Skip to content

Commit

Permalink
updating running docker compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
NickSavage committed Jan 5, 2025
1 parent 9276333 commit ec51360
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions docker-zettel-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ version: '3'
services:
frontend:
image: nsavage/zettelgarden_frontend:latest
#image: 192.168.0.97:50000/zettelkasten_frontend:latest
restart: always
ports:
- "3001:3000"
depends_on:
- go_backend

go_backend:
image: nsavage/zettelgarden_go_backend:latest
#image: 192.168.0.97:50000/zettelkasten_go_backend:latest
restart: always
depends_on:
db:
condition: service_healthy
Expand All @@ -20,8 +20,11 @@ services:
- "8080:8080"
env_file:
- zettel.env
volumes:
- /var/log/zettel:/app/logs
db:
image: postgres
image: pgvector/pgvector:pg16
restart: always
env_file:
- zettel.env
ports:
Expand All @@ -34,3 +37,13 @@ services:
retries: 5
start_period: 30s
timeout: 10s

mail-service:
image: nsavage/zettelgarden_python_mail:latest
restart: always
ports:
- "8081:8081"
env_file:
- zettel.env
volumes:
- /var/log/zettel:/app/logs

0 comments on commit ec51360

Please sign in to comment.