Skip to content

Commit 083329e

Browse files
committed
Fix docker-compose.yaml volume mounts
Signed-off-by: Federico Busetti <[email protected]>
1 parent 2b8463f commit 083329e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docker-compose.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ services:
1919
OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector:4317"
2020
CELERY__broker_url: "redis://redis:6379/0"
2121
CELERY__result_backend: "redis://redis:6379/1"
22+
working_dir: "/app/src"
2223
volumes:
23-
- './src:/app'
24-
- './pyproject.toml:/app/pyproject.toml'
24+
- '.:/app'
2525
depends_on:
2626
- redis
2727
- otel-collector
@@ -37,9 +37,9 @@ services:
3737
OTEL_EXPORTER_OTLP_ENDPOINT: "http://otel-collector:4317"
3838
CELERY__broker_url: "redis://redis:6379/0"
3939
CELERY__result_backend: "redis://redis:6379/1"
40+
working_dir: "/app/src"
4041
volumes:
41-
- './src:/app'
42-
- './pyproject.toml:/app/pyproject.toml'
42+
- '.:/app'
4343
depends_on:
4444
- redis
4545
- otel-collector
@@ -64,9 +64,9 @@ services:
6464
CELERY__result_backend: "redis://redis:6379/1"
6565
ports:
6666
- '8000:8000'
67+
working_dir: "/app/src"
6768
volumes:
68-
- './src:/app'
69-
- './pyproject.toml:/app/pyproject.toml'
69+
- '.:/app'
7070
depends_on:
7171
- redis
7272
- otel-collector

0 commit comments

Comments
 (0)