Skip to content

Commit 259b3b8

Browse files
committed
chore(deployment): set docker compose simage tag to registry
1 parent 7ef96cd commit 259b3b8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
working-directory: ./resources/deployment
2626
run: |
2727
docker compose -f compose.production.yml build
28-
docker tag shapez-base ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base:latest
29-
docker tag shapez-base ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base:${{ github.ref_name }}
30-
docker tag shapez-proxy ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy:latest
31-
docker tag shapez-proxy ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy:${{ github.ref_name }}
28+
docker tag ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base:latest
29+
docker tag ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base ghcr.io/${{ env.REGISTRY_DIR }}/shapez-base:${{ github.ref_name }}
30+
docker tag ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy:latest
31+
docker tag ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy ghcr.io/${{ env.REGISTRY_DIR }}/shapez-proxy:${{ github.ref_name }}
3232
- name: Push
3333
run: |
3434
docker image ls

resources/deployment/caddy-services.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
caddy:
33
container_name: shapez-proxy
4-
image: shapez-proxy
4+
image: ghcr.io/dontmash/shapez-proxy
55
build:
66
dockerfile: caddy.dockerfile
77
restart: unless-stopped

resources/deployment/pocketbase-services.compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
pocketbase:
33
container_name: shapez-base
4-
image: shapez-base
4+
image: ghcr.io/dontmash/shapez-base
55
build:
66
dockerfile: pocketbase.dockerfile
77
restart: unless-stopped

0 commit comments

Comments
 (0)