snackpot.yml, docker-compose.yml - these nextcloud paths can be fixed

This commit is contained in:
Nick Stokoe
2021-12-03 17:38:49 +00:00
parent c160ba5193
commit 71d8edab0a
2 changed files with 5 additions and 8 deletions

View File

@@ -6,9 +6,6 @@
postgres_password: "{{lookup('passwordstore', 'servers/snackpot/postgres_db.password')}}"
postgres_db_user: postgres
nextcloud_hostname: nc.noodlefactory.co.uk
nextcloud_base_dir: /var/www/html
nextcloud_data_dir: /var/www/data
nextcloud_ext_dir: /var/www/ext
nextcloud_db_user: nextcloud
nextcloud_db: nextcloud
letsencrypt_email: webmaster@noodlefactory.co.uk

View File

@@ -42,9 +42,9 @@ services:
image: nextcloud:18.0.13-fpm-alpine
restart: always
volumes:
- nextcloud_src:{{ nextcloud_base_dir }}
- nextcloud_data:{{ nextcloud_data_dir }}
- minidlna_data:{{ nextcloud_ext_dir }}/media
- nextcloud_src:/var/www/html
- nextcloud_data:/var/www/data
- minidlna_data:/var/www/ext/media
- /srv:/srv
links:
- postgres
@@ -62,8 +62,8 @@ services:
image: nextcloud:18.0.13-fpm-alpine
restart: always
volumes:
- nextcloud_src:{{ nextcloud_base_dir }}
- nextcloud_data:{{ nextcloud_data_dir }}
- nextcloud_src:/var/www/html
- nextcloud_data:/var/www/data
entrypoint: /cron.sh
depends_on:
- postgres