Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ services:

emstrack:
build:
context: https://github.com/EMSTrack/EMSTrack-Django.git#devel
context: https://github.com/m2felix/EMSTrack-Django.git#devel-organizations-Fall2025
env_file:
- settings.env
#- local.env
Expand All @@ -51,6 +51,8 @@ services:
- app-network
depends_on:
- db
ports:
- "8000:8000" ##Added this line right here DjNGO Backend

certbot:
build:
Expand All @@ -74,9 +76,9 @@ services:
container_name: dashboard
env_file:
- settings.env
#- local.env # uncomment when running
#- local.env # uncomment when running
ports:
- 8080:8080 # internal:external
- 8080:8080 # internal:external Frontend dashboard
networks:
- app-network

Expand All @@ -100,6 +102,11 @@ services:
- certbot-var:/var/lib/letsencrypt
depends_on:
- certbot
#- mqtt ##Added this line right here
#- emstrack ##Added this line right here
#- dashboard ##Added this line right here


networks:
- app-network

Expand Down