-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathdocker-compose.override.yml
More file actions
79 lines (76 loc) · 2.07 KB
/
docker-compose.override.yml
File metadata and controls
79 lines (76 loc) · 2.07 KB
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
services:
django:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command: [
"./manage.py",
"runserver_plus", "0.0.0.0:8000"
]
# Log printing is enhanced by a TTY
tty: true
environment:
PYTHONDONTWRITEBYTECODE: 1
PYTHONUNBUFFERED: 1
TOX_WORK_DIR: /home/vscode/tox
UV_ENV_FILE: ./dev/.env.docker-compose
UV_PROJECT_ENVIRONMENT: /home/vscode/uv-env
UV_CACHE_DIR: /home/vscode/uv/cache
UV_PYTHON_INSTALL_DIR: /home/vscode/uv/bin
UV_LINK_MODE: symlink
working_dir: /home/vscode/dandi
env_file: ./dev/.env.docker-compose
volumes:
- .:/home/vscode/dandi
- uv_cache:/home/vscode/uv
- pre-commit_cache:/home/vscode/.cache/pre-commit
ports:
- 8000:8000
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
minio:
condition: service_healthy
celery:
build:
context: .
dockerfile: ./dev/django.Dockerfile
command: [
"uv", "run",
"celery",
"--app", "dandiapi.celery",
"worker",
"--loglevel", "INFO",
"--without-heartbeat",
"-Q", "celery,calculate_sha256,ingest_zarr_archive,manifest-worker",
"-B"
]
# Docker Compose does not set the TTY width, which causes Celery errors
tty: false
environment:
PYTHONDONTWRITEBYTECODE: 1
PYTHONUNBUFFERED: 1
TOX_WORK_DIR: /home/vscode/tox
UV_ENV_FILE: ./dev/.env.docker-compose
UV_PROJECT_ENVIRONMENT: /home/vscode/uv-env
UV_CACHE_DIR: /home/vscode/uv/cache
UV_PYTHON_INSTALL_DIR: /home/vscode/uv/bin
UV_LINK_MODE: symlink
working_dir: /home/vscode/dandi
env_file: ./dev/.env.docker-compose
volumes:
- .:/home/vscode/dandi
- uv_cache:/home/vscode/uv
- pre-commit_cache:/home/vscode/.cache/pre-commit
depends_on:
postgres:
condition: service_healthy
rabbitmq:
condition: service_healthy
minio:
condition: service_healthy
volumes:
uv_cache:
pre-commit_cache: