-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.override.yml
64 lines (61 loc) · 1.3 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
version: '3'
services:
django:
build:
context: .
dockerfile: ./dev/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/uvdat-server
ports:
- 8000:8000
depends_on:
- postgres
- rabbitmq
- minio
platform: linux/amd64
celery:
build:
context: .
dockerfile: ./dev/Dockerfile
command:
[
"celery",
"--app",
"uvdat.celery",
"worker",
"--loglevel",
"INFO",
"--without-heartbeat"
]
# Docker Compose does not set the TTY width, which causes Celery errors
tty: false
env_file: ./dev/.env.docker-compose
volumes:
- .:/opt/uvdat-server
depends_on:
- postgres
- rabbitmq
- minio
platform: linux/amd64
gen-vector-basemap:
build:
context: ./docker/tilemaker
dockerfile: Dockerfile
restart: no
volumes:
- vector-workdir:/work
- ./client/public/vectortiles:/data
docs:
image: minidocks/mkdocs
working_dir: /docs
volumes:
- ./:/docs
command: 'serve -a 0.0.0.0:8000 -f ./mkdocs.dev.yml'
ports:
- 8003:8000
volumes:
vector-workdir: