-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (44 loc) · 1.08 KB
/
docker-compose.yml
File metadata and controls
47 lines (44 loc) · 1.08 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:
web:
build: .
ports:
- "5000:5000"
volumes:
- .:/kintun
- ./logs:/kintun/logs
- ./outputs:/kintun/outputs
environment:
- FLASK_DEBUG=1
- PYTHONUNBUFFERED=notempty
depends_on:
- mongo
networks:
- mynetwork
privileged: true
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
ports:
- 27017:27017
networks:
- mynetwork
mongo-express:
image: mongo-express
restart: always
ports:
- 8082:8082
depends_on:
- mongo
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
networks:
- mynetwork
networks:
mynetwork:
name: mynetwork
driver: bridge