diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-09-10 13:23:50 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-09-10 13:23:50 +0200 |
| commit | 7e8cc9926e1b4bc6b65f78c055905f65b301e9ca (patch) | |
| tree | 5aec578a1fc77f391968e1cf4537b802db6dff6a | |
| parent | ddefa23e8e86c4eab2d2218646bcef21d547f4bc (diff) | |
fix(docker): Mount local traces to correct container directory
This change fixes an issue where local traces are not correctly detected
due to Docker mounting the local traces in the incorrect directory.
| -rw-r--r-- | docker-compose.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 150445dc..9fd9156c 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,7 +43,7 @@ services: volumes: - type: bind source: ./traces - target: /app/traces + target: /opt/opendc/traces environment: - OPENDC_DB - OPENDC_DB_USERNAME |
