Skip to content

Commit 7cbe636

Browse files
committed
unlink ghcr for now
1 parent 4b2e865 commit 7cbe636

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

docker-compose.yml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
services:
22
nginx:
3-
image: ghcr.io/${OWNER_LC:-hugefrog24}/nginx:latest
3+
build:
4+
context: .
5+
dockerfile: nginx/Dockerfile
6+
args:
7+
ENVIRONMENT: prod
48
profiles: ["prod"]
59
ports:
610
- "80:80"
@@ -32,7 +36,10 @@ services:
3236
- app_network
3337

3438
django:
35-
image: ghcr.io/${OWNER_LC:-hugefrog24}/tibiknini:latest
39+
build:
40+
context: .
41+
dockerfile: backend/Dockerfile
42+
target: production
3643
profiles: ["prod"]
3744
volumes:
3845
- static_volume:/usr/src/app/staticfiles
@@ -77,7 +84,10 @@ services:
7784
- recaptcha_secret_key
7885

7986
celery_worker:
80-
image: ghcr.io/${OWNER_LC:-hugefrog24}/tibiknini:latest
87+
build:
88+
context: .
89+
dockerfile: backend/Dockerfile
90+
target: production
8191
profiles: ["prod"]
8292
volumes:
8393
- media_volume:/var/www/media
@@ -124,7 +134,10 @@ services:
124134
- email_host_password
125135

126136
celery_beat:
127-
image: ghcr.io/${OWNER_LC:-hugefrog24}/tibiknini:latest
137+
build:
138+
context: .
139+
dockerfile: backend/Dockerfile
140+
target: production
128141
profiles: ["prod"]
129142
volumes:
130143
- media_volume:/var/www/media

0 commit comments

Comments
 (0)