-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose-dev.yml
72 lines (62 loc) · 1.29 KB
/
docker-compose-dev.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
version: "3"
services:
openresty:
build:
context: .
dockerfile: ./compose/openresty/Dockerfile
volumes:
- ./logs/nginx:/var/log/nginx
ports:
- 80:80
web:
build:
context: .
dockerfile: ./compose/django/Dockerfile
restart: always
env_file:
- ./backend/.example.env
depends_on:
- mysql
- redis
- openresty
volumes:
- ./backend/files:/app/files
- ./backend/data/static:/app/data/static
- ./logs/backend:/app/logs
- ./backend/cmdb/migrations:/app/web/app/migrations
command: /start
celery:
build:
context: .
dockerfile: ./compose/django/Dockerfile
restart: always
env_file:
- ./backend/.example.env
depends_on:
- mysql
- redis
- web
command: /start-celeryworker
beat:
build:
context: .
dockerfile: ./compose/django/Dockerfile
restart: always
env_file:
- ./backend/.example.env
depends_on:
- mysql
- redis
- web
command: /start-celerybeat
mysql:
image: mysql:5.7
env_file:
- ./backend/.example.env
command: ["--character-set-server=utf8mb4","--collation-server=utf8mb4_unicode_ci"]
redis:
image: redis:5.0
networks:
default:
external:
name: cmdb