Move volumes into subfolder (ref #474)

This commit is contained in:
Felix 2020-03-09 01:35:11 +01:00
parent 9c1bcd6b26
commit 17e307973f
3 changed files with 7 additions and 15 deletions

View file

@ -19,7 +19,7 @@ services:
- POSTGRES_PASSWORD={{ postgres_password }}
- POSTGRES_DB=lemmy
volumes:
- lemmy_db:/var/lib/postgresql/data
- ./volumes/postgres:/var/lib/postgresql/data
restart: always
lemmy_pictshare:
@ -27,7 +27,7 @@ services:
ports:
- "127.0.0.1:8537:80"
volumes:
- lemmy_pictshare:/usr/share/nginx/html/data
- ./volumes/pictshare:/usr/share/nginx/html/data
restart: always
lemmy_iframely:
@ -43,7 +43,3 @@ services:
environment:
- POSTFIX_myhostname={{ domain }}
restart: "always"
volumes:
lemmy_db:
lemmy_pictshare:
lemmy_iframely:

View file

@ -8,7 +8,7 @@ services:
- POSTGRES_PASSWORD=password
- POSTGRES_DB=lemmy
volumes:
- lemmy_db:/var/lib/postgresql/data
- ./volumes/postgres:/var/lib/postgresql/data
restart: always
lemmy:
build:
@ -26,7 +26,7 @@ services:
ports:
- "127.0.0.1:8537:80"
volumes:
- lemmy_pictshare:/usr/share/nginx/html/data
- ./volumes/pictshare:/usr/share/nginx/html/data
restart: always
lemmy_iframely:
image: dogbin/iframely:latest

View file

@ -8,7 +8,7 @@ services:
- POSTGRES_PASSWORD=password
- POSTGRES_DB=lemmy
volumes:
- lemmy_db:/var/lib/postgresql/data
- ./volumes/postgres:/var/lib/postgresql/data
restart: always
lemmy:
image: dessalines/lemmy:v0.6.33
@ -24,7 +24,7 @@ services:
ports:
- "127.0.0.1:8537:80"
volumes:
- lemmy_pictshare:/usr/share/nginx/html/data
- ./volumes/pictshare:/usr/share/nginx/html/data
restart: always
lemmy_iframely:
image: dogbin/iframely:latest
@ -33,7 +33,3 @@ services:
volumes:
- ./iframely.config.local.js:/iframely/config.local.js:ro
restart: always
volumes:
lemmy_db:
lemmy_pictshare:
lemmy_iframely: