Skip to content

Commit 6c995d8

Browse files
committed
fix: Correct port configuration placement in docker-compose for server exposure
1 parent 0196ef4 commit 6c995d8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,4 +238,4 @@ docker compose up -d
238238

239239
## License
240240

241-
MIT. See [LICENSE](LICENSE) for details.
241+
See [LICENSE](LICENSE) for details.

docker-compose.development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ services:
6767
- DEBUG=${DEBUG:-false}
6868
expose:
6969
- 8000/tcp
70-
ports:
71-
- "${SERVER_PORT:-8080}:8000"
7270
links:
7371
- database-server
7472
depends_on:
7573
database-server:
7674
condition: service_healthy
7775
networks:
7876
local:
77+
ports:
78+
- "${SERVER_PORT:-8080}:8000"
7979

8080
### Support Services ###
8181
# PostgreSQL Database Server

0 commit comments

Comments
 (0)