Skip to content

Commit

Permalink
feat: Now you can specify exposed port via environmental variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
Byloth committed Oct 9, 2024
1 parent bd802c9 commit 82125d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
- default

ports:
- "8085:8085"
- "${MANGOSD_PORT:-8085}:8085"

volumes:
- cmangos_mangosd_data:/var/lib/mangos:ro
Expand All @@ -52,7 +52,7 @@ services:
- default

ports:
- "3724:3724"
- "${REALMD_PORT:-3724}:3724"

volumes:
- cmangos_mangosd_data:/var/lib/mangos:ro
Expand All @@ -74,7 +74,7 @@ services:
- default

ports:
- "8080:80"
- "${PHPMYADMIN_PORT:-8080}:80"

networks:
default:
Expand Down

0 comments on commit 82125d9

Please sign in to comment.