blob: b37068fc2fe7dc6903003560bfc6657ed81efb66 (
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
|
version: "3.8"
# Docker Compose overrides for development environments
services:
frontend:
ports:
- "8080:3000"
environment:
NEXT_PUBLIC_API_BASE_URL: http://localhost:8081
api:
ports:
- "8081:80"
environment:
SENTRY_ENVIRONMENT: "development"
simulator:
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}"
|