Skip to content

Commit

Permalink
Merge pull request #14 from yeti-platform/fix-13-export-volume
Browse files Browse the repository at this point in the history
Create yeti-exports and yeti-db volumes
  • Loading branch information
sebdraven authored Jul 3, 2024
2 parents 8e21965 + 1209d55 commit 71bb859
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions prod/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- redis
- arangodb
volumes:
- /tmp/docker-yeti-exports:/opt/yeti/exports
- yeti-exports:/opt/yeti/exports

tasks:
container_name: yeti-tasks
Expand All @@ -43,6 +43,9 @@ services:
- redis
- arangodb
- api
volumes:
- yeti-exports:/opt/yeti/exports


redis:
container_name: yeti-redis
Expand All @@ -54,8 +57,14 @@ services:
environment:
- ARANGO_ROOT_PASSWORD=
volumes:
- /yeti-data:/var/lib/arangodb3
- yeti-db:/var/lib/arangodb3

networks:
default:
name: yeti_network

volumes:
yeti-exports:
driver: local
yeti-db:
driver: local

0 comments on commit 71bb859

Please sign in to comment.