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:
|
2024-09-30 14:42:50 +01:00
|
|
|
# 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
|
|
|
|
2024-09-30 14:42:50 +01:00
|
|
|
# db:
|
|
|
|
|
# ports:
|
|
|
|
|
# - '5432:5432'
|
2023-06-05 11:24:14 +02:00
|
|
|
|
2024-09-30 14:42:50 +01:00
|
|
|
# db-test:
|
|
|
|
|
# ports:
|
|
|
|
|
# - '5433:5432'
|
2023-06-05 11:24:14 +02:00
|
|
|
|
2024-09-30 14:42:50 +01:00
|
|
|
# chrome:
|
|
|
|
|
# ports:
|
|
|
|
|
# - '5900:5900'
|