-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yaml
92 lines (84 loc) · 1.74 KB
/
docker-compose.yaml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#
# LogUI Server docker-compose File
#
# Author: David Maxwell
# Date: 2021-03-26
#
version: "3.0"
services:
proxy:
build:
context: ./proxy
restart: always
depends_on:
- http-worker
- websocket-worker
ports:
- ${PROXY_LISTEN_ON}:8000
volumes:
- static:/logui/worker/static/
networks:
- frontend
http-worker:
build:
context: ./
dockerfile: ./worker/Dockerfile
args:
- SECRET_KEY=${SECRET_KEY} # This is required for collectstatic to work.
env_file: .env
environment:
- PYTHONDONTWRITEBYTECODE=1
- PYTHONUNBUFFERED=1
restart: always
volumes:
- static:/logui/worker/static/
networks:
- frontend
- backend
websocket-worker:
build:
context: ./
dockerfile: ./worker/Dockerfile
args:
- SECRET_KEY=${SECRET_KEY}
command: daphne -b 0.0.0.0 -p 8000 worker.asgi:logui_application
env_file: .env
environment:
- PYTHONDONTWRITEBYTECODE=1
- PYTHONUNBUFFERED=1
restart: always
volumes:
- static:/logui/worker/static/
networks:
- frontend
- backend
db:
image: postgres
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
- POSTGRES_DB=logui
# - PGDATA=/logui/data/
volumes:
- db:/var/lib/postgresql/data
networks:
- backend
mongo:
image: mongo
restart: always
environment:
- MONGO_INITDB_ROOT_USERNAME=mongo
- MONGO_INITDB_ROOT_PASSWORD=${DATABASE_PASSWORD}
volumes:
- mongo:/data/db
- mongo:/data/configdb
networks:
- backend
volumes:
static:
db:
mongo:
networks:
frontend:
backend: