blob: 5d104557e23d90d41f7122d5fa23e4d8520bfe41 (
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
34
35
36
37
38
|
version: "3.8"
# Docker Compose overrides for development environments
services:
frontend:
build: opendc-web/opendc-web-ui
ports:
- "8080:3000"
environment:
NEXT_PUBLIC_API_BASE_URL: http://localhost:8081
api:
build: opendc-web/opendc-web-api
ports:
- "8081:80"
environment:
SENTRY_ENVIRONMENT: "development"
simulator:
build: .
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_URL: "mongodb://${MONGO_INITDB_ROOT_USERNAME}:${MONGO_INITDB_ROOT_PASSWORD}@mongo:27017/"
|