Skip to content

Commit ae57a41

Browse files
committed
Hard code organization
Signed-off-by: kiranpranay <pranay@cottonseeds.org>
1 parent c50efb6 commit ae57a41

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919

2020
- name: Build and Push Image
2121
run: |
22-
IMAGE=ghcr.io/${{ github.repository_owner }}/stmorg:latest
22+
OWNER_LC=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
23+
IMAGE=ghcr.io/$OWNER_LC/stmorg:latest
2324
docker build -t $IMAGE .
2425
docker push $IMAGE
2526

docker-compose.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11

2-
services:
32
web:
4-
image: ghcr.io/weberq/stmorg:latest
3+
image: ghcr.io/servicetomankind/stmorg:latest
54
container_name: stmorg
65
restart: unless-stopped
76
labels:
@@ -12,7 +11,7 @@ services:
1211
networks:
1312
- web_network
1413

15-
networks:
16-
web_network:
17-
external: true
14+
networks:
15+
web_network:
16+
external: true
1817

0 commit comments

Comments
 (0)