Files
openproject/docker-compose.override.example.yml
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
547 B
YAML
Raw Normal View History

2023-06-05 11:24:14 +02:00
# This is an example for the `docker-compose.override.yml`.
# You can use this as a base for creating your own override file.
services:
backend:
# use these ports to be able to access the stack under http://localhost:3000
2023-06-05 11:24:14 +02:00
ports:
2024-09-19 13:19:07 +02:00
- "${PORT:-3000}:3000"
2023-06-05 11:24:14 +02:00
frontend:
2024-12-02 16:48:28 +01:00
# use these ports to be able to access the stack under http://localhost:4200
2023-06-05 11:24:14 +02:00
ports:
2024-09-19 13:19:07 +02:00
- "${FE_PORT:-4200}:4200"
2023-06-05 11:24:14 +02:00
# db:
# ports:
# - '5432:5432'
2023-06-05 11:24:14 +02:00
# db-test:
# ports:
# - '5433:5432'
2023-06-05 11:24:14 +02:00
# chrome:
# ports:
# - '5900:5900'