Skip to content

Commit 5af6e95

Browse files
committed
Refactor docker-compose.yml: comment out build context and dockerfile for detectish, backend, and frontend services
1 parent dcb1055 commit 5af6e95

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

docker-compose.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
services:
22
detectish:
33
image: matthl2002/detectish:latest
4+
# build:
5+
# context: .
6+
# dockerfile: Dockerfile
47
container_name: detectish
58
depends_on:
69
mysql:
@@ -22,6 +25,7 @@ services:
2225
DB_PORT: 3306
2326
CLAMAV_HOST: clamav
2427
CLAMAV_PORT: 3310
28+
MISTRAL_API_KEY: your_mistral_api_key # Replace with your actual Mistral API key
2529
healthcheck:
2630
test: ["CMD-SHELL", "curl -f http://localhost:6969/health || exit 1"]
2731
interval: 30s
@@ -32,6 +36,9 @@ services:
3236

3337
backend:
3438
image: matthl2002/detectish-backend:latest
39+
# build:
40+
# context: ./backend
41+
# dockerfile: Dockerfile
3542
container_name: detectish-backend
3643
depends_on:
3744
mysql:
@@ -62,6 +69,9 @@ services:
6269

6370
frontend:
6471
image: matthl2002/detectish-frontend:latest
72+
# build:
73+
# context: ./frontend
74+
# dockerfile: Dockerfile
6575
container_name: detectish-frontend
6676
depends_on:
6777
backend:

0 commit comments

Comments
 (0)