Skip to content

Commit 71bb859

Browse files
authored
Merge pull request #14 from yeti-platform/fix-13-export-volume
Create yeti-exports and yeti-db volumes
2 parents 8e21965 + 1209d55 commit 71bb859

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

Diff for: prod/docker-compose.yaml

+11-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ services:
2929
- redis
3030
- arangodb
3131
volumes:
32-
- /tmp/docker-yeti-exports:/opt/yeti/exports
32+
- yeti-exports:/opt/yeti/exports
3333

3434
tasks:
3535
container_name: yeti-tasks
@@ -43,6 +43,9 @@ services:
4343
- redis
4444
- arangodb
4545
- api
46+
volumes:
47+
- yeti-exports:/opt/yeti/exports
48+
4649

4750
redis:
4851
container_name: yeti-redis
@@ -54,8 +57,14 @@ services:
5457
environment:
5558
- ARANGO_ROOT_PASSWORD=
5659
volumes:
57-
- /yeti-data:/var/lib/arangodb3
60+
- yeti-db:/var/lib/arangodb3
5861

5962
networks:
6063
default:
6164
name: yeti_network
65+
66+
volumes:
67+
yeti-exports:
68+
driver: local
69+
yeti-db:
70+
driver: local

0 commit comments

Comments
 (0)