Revert "Mount podman socket itself directly"
This reverts commit9703c87f28
. Revert "Make the socker available on /var/run/docker.sock as well" This reverts commit3b0519f50e
. Revert "Dont enforce short name resolution" This reverts commit7f2f2abd2c
. Revert "Attempt using podman for building image" This reverts commit730c4c3d32
. Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
parent
06c025a6d4
commit
fc287f97f7
1 changed files with 5 additions and 9 deletions
|
@ -1,17 +1,13 @@
|
|||
docker-build:
|
||||
image: quay.io/podman/stable:latest
|
||||
image: docker:dind
|
||||
stage: build
|
||||
before_script:
|
||||
- dnf -y install git make
|
||||
- sed -i 's/short-name-mode="enforcing"/short-name-mode="permissive"/g' /etc/containers/registries.conf
|
||||
- ln -s /usr/bin/podman /usr/bin/docker
|
||||
- podman system service --time 0 unix://var/run/podman/podman.sock &
|
||||
- ln -s /var/run/podman/podman.sock /var/run/docker.sock
|
||||
- echo "$DOCKER_PASSWORD" | podman login -u "$DOCKER_USERNAME" registry.baalajimaestro.me --password-stdin
|
||||
- apk add make git
|
||||
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" registry.baalajimaestro.me --password-stdin
|
||||
variables:
|
||||
GO111MODULE: "on"
|
||||
GOPATH: "/root/go"
|
||||
script:
|
||||
- make build-image
|
||||
- podman tag traefik/traefik registry.baalajimaestro.me/baalajimaestro/traefik:latest
|
||||
- podman push registry.baalajimaestro.me/baalajimaestro/traefik:latest
|
||||
- docker tag traefik/traefik registry.baalajimaestro.me/baalajimaestro/traefik:latest
|
||||
- docker push registry.baalajimaestro.me/baalajimaestro/traefik:latest
|
||||
|
|
Loading…
Reference in a new issue