Skip to content

Commit

Permalink
correct ports in compose override example
Browse files Browse the repository at this point in the history
  • Loading branch information
toy committed Sep 30, 2024
1 parent 8c70afc commit f8ef798
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-compose.override.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
services:
backend:
environment:
OPENPROJECT_CLI_PROXY: "http://localhost:${PORT}"
OPENPROJECT_CLI_PROXY: "http://localhost:${FE_PORT:-4200}"
ports:
- "3000:3000"
- "${PORT:-3000}:3000"

frontend:
ports:
- "${PORT}:4200"
- "${FE_PORT:-4200}:4200"

db:
ports:
Expand Down

0 comments on commit f8ef798

Please sign in to comment.