-
Notifications
You must be signed in to change notification settings - Fork 0
/
local.yml
95 lines (88 loc) · 2.13 KB
/
local.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: '3'
volumes:
pemors_local_postgres_data: { }
pemors_local_postgres_data_backups: { }
redisdata: { }
services:
django:
build:
context: .
dockerfile: ./compose/local/django/Dockerfile
image: pemors_local_django
container_name: pemors_local_django
platform: linux/x86_64
depends_on:
- postgres
- redis
volumes:
- .:/app:z
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
ports:
- "8000:8000"
command: /start
tty: true
tailwind:
build:
context: .
dockerfile: ./compose/local/django/Dockerfile
image: pemors_local_django
container_name: pemors_local_tailwind
platform: linux/x86_64
depends_on:
- postgres
volumes:
- .:/app:z
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
command: bash -c "npm run dev"
working_dir: /app/theme/static_src
# Without tty, no stdin, and tailwind watcher aborts
# https://github.com/tailwindlabs/tailwindcss/issues/5324
tty: true
postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: pemors_production_postgres
container_name: pemors_local_postgres
volumes:
- pemors_local_postgres_data:/var/lib/postgresql/data:Z
- pemors_local_postgres_data_backups:/backups:z
env_file:
- ./.envs/.local/.postgres
redis:
restart: always
image: redis:latest
container_name: pemors_local_redis
volumes:
- redisdata:/data
react:
restart: always
build:
context: .
dockerfile: ./compose/local/react/Dockerfile
volumes:
- .:/app:z
container_name: pemors_local_react
celery_worker:
build:
context: .
dockerfile: ./compose/local/django/Dockerfile
image: pemors_local_django
container_name: pemors_local_celery
platform: linux/x86_64
depends_on:
- postgres
- redis
volumes:
- .:/app:z
env_file:
- ./.envs/.local/.django
- ./.envs/.local/.postgres
ports:
- "8001:8001"
command: celery -A config worker -l INFO
tty: true