forked from WEEE-Open/skeeelled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
52 lines (48 loc) · 1.18 KB
/
docker-compose.yml
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
48
49
50
51
52
# Use root/example as user/password credentials
version: '3.1'
services:
#mongodb installation. It generates the "data" subdir in the project
mongo:
image: mongo
restart: on-failure
volumes:
- ./data/db:/data/db
ports:
- "27017:27017"
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example
#developement only dashboard for easy checking on db changes
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: example
ME_CONFIG_MONGODB_URL: mongodb://root:example@mongo:27017/
depends_on:
- mongo
#web server
nginx:
build: ./server/docker/nginx
volumes:
- ./server/static:/static
ports:
- "80:80"
depends_on:
- web
restart: on-failure
#python image that executes django and gunicorn
web:
build: ./server/docker/django
volumes:
- ./server/wtp:/code
- ./server/static:/static
# env_file: some env variables should be added for settings.py variables
# - .env
expose:
- 8000
depends_on:
- mongo