-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
100 lines (97 loc) · 2.18 KB
/
docker-compose.override.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
96
97
98
99
100
version: '3'
services:
django:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command: [
"./manage.py",
"runserver",
"0.0.0.0:8000"
]
# Log printing via Rich is enhanced by a TTY
tty: true
env_file: ./dev/.env.docker-compose
volumes:
- .:/opt/django-project
- ./dev:/client/dev
ports:
- 8000:8000
depends_on:
- postgres
- rabbitmq
- minio
celery:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command:
[
"celery",
"--app",
"shapeworks_cloud.celery",
"worker",
"-n=main",
"--loglevel",
"INFO",
"--without-heartbeat"
]
# Docker Compose does not set the TTY width, which causes Celery errors
tty: false
env_file: ./dev/.env.celery.docker-compose
volumes:
- .:/opt/django-project
# Use host mode so that celery can use the localhost:8000 API in dev deployments
network_mode: host
depends_on:
- postgres
- rabbitmq
- minio
celery-gpu:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command:
[
"celery",
"--app",
"shapeworks_cloud.celery",
"worker",
"-Q",
"gpu",
"-n=gpu",
"-P",
"threads",
"--loglevel",
"INFO",
"--without-heartbeat"
]
# Docker Compose does not set the TTY width, which causes Celery errors
tty: false
env_file: ./dev/.env.celery.docker-compose
volumes:
- .:/opt/django-project
# Use host mode so that celery can use the localhost:8000 API in dev deployments
network_mode: host
shm_size: 8gb
depends_on:
- postgres
- rabbitmq
- minio
yarn:
image: node:17
command: [
"/bin/bash",
"-c",
"yarn install && yarn serve"
]
env_file: ./dev/yarn.env
environment:
- NODE_OPTIONS=--openssl-legacy-provider
- VUE_APP_API_ROOT=http://localhost:8000/
- VUE_APP_OAUTH_API_ROOT=http://localhost:8000/oauth/
volumes:
- ./web/shapeworks:/app/server
working_dir: /app/server
ports:
- 8081:8080