blob: 4ae19dc68707a51caf6f2af2fcc4f85aa3c9f85b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
version: "3.8"
# Docker Compose overrides for development environments
services:
frontend:
build:
args:
OPENDC_API_BASE_URL: http://localhost:8081
ports:
- "8080:80"
api:
ports:
- "8081:8081"
environment:
SENTRY_ENVIRONMENT: "development"
mongo:
ports:
- "27017:27017"
mongo-express:
image: mongo-express
restart: on-failure
networks:
- backend
depends_on:
- mongo
ports:
- "8082:8081"
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: "${MONGO_INITDB_ROOT_USERNAME}"
ME_CONFIG_MONGODB_ADMINPASSWORD: "${MONGO_INITDB_ROOT_PASSWORD}"
|