-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.development.yml
More file actions
47 lines (44 loc) · 1.07 KB
/
docker-compose.development.yml
File metadata and controls
47 lines (44 loc) · 1.07 KB
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
39
40
41
42
43
44
45
46
47
services:
authenticatedwebapp.api:
image: authenticatedwebapp.api
build:
context: .
dockerfile: AuthenticatedWebApp.Api/Dockerfile
ports:
- "8080:8080"
- "8081:8081"
depends_on:
mongo-db:
condition: service_healthy
environment:
- ASPNETCORE_ENVIRONMENT=Development
mongo-db:
image: mongo:latest
container_name: mongo
ports:
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
volumes:
- mongo-data:/data/db
healthcheck:
test: echo 'db.runCommand("ping").ok' | mongosh localhost:27017/test --quiet
interval: 10s
timeout: 5s
retries: 3
start_period: 5s
mongo-express:
image: mongo-express:latest
container_name: mongo-express
depends_on:
mongo-db:
condition: service_healthy
ports:
- "27018:8081"
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_SERVER: mongo
volumes:
mongo-data: