-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
51 lines (46 loc) · 1001 Bytes
/
docker-compose.dev.yml
File metadata and controls
51 lines (46 loc) · 1001 Bytes
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
services:
georiva:
build:
target: dev
command: django-dev-no-attach
environment:
DEBUG: "True"
MIGRATE_ON_STARTUP: "true"
COLLECT_STATICFILES_ON_STARTUP: "true"
volumes:
- ./georiva:/georiva/app
ports:
- "8000:8000"
georiva-celery-default-worker:
build:
target: dev
command: celery-default-worker-dev
environment:
DEBUG: "True"
volumes:
- ./georiva:/georiva/app
georiva-celery-ingestion-worker:
build:
target: dev
command: celery-ingestion-worker-dev
environment:
DEBUG: "True"
volumes:
- ./georiva:/georiva/app
georiva-celery-beat:
build:
target: dev
environment:
DEBUG: "True"
volumes:
- ./georiva:/georiva/app
georiva-minio:
ports:
- "9000:9000" # S3 API
- "9001:9001" # Web Console
georiva-titiler-app:
command: uvicorn-dev
volumes:
- ./titiler-app/app:/app/app
ports:
- "8888:8000"