Nextcloud Server, a safe home for all your data
Go to file
Christian Galo 9d2ec0f0b5 put secrets in correct files 2023-10-16 23:21:17 +00:00
.gitignore remove files specific to abra, rename yml to yaml 2023-08-26 20:20:57 +00:00
README.md put secrets in correct files 2023-10-16 23:21:17 +00:00
compose.mariadb.yaml put secrets in correct files 2023-10-16 23:21:17 +00:00
compose.smtp.yaml Minimal removal of abra-related stuff 2023-08-31 07:07:22 +00:00
compose.yaml put secrets in correct files 2023-10-16 23:21:17 +00:00
entrypoint.sh.tmpl healthchecks (#32) 2023-08-08 08:30:05 +00:00
fpm-tune.ini feat: template fpm settings 2023-08-08 08:30:05 +00:00
my-tune.cnf fix: increase packets to avoid comm timeouts 2021-11-15 11:30:08 +01:00
nginx.conf.tmpl fix frame ancestors 2022-10-11 16:12:04 +02:00

README.md

Nextcloud

Wiki Cafe's configuration for a Nextcloud deployment. Originally slimmed down from an abra recipe by Co-op Cloud.

Deploying the app with Docker Swarm

Set the environment variables from the .env file during the shell session.

set -a && source .env && set +a

Set the secrets.

printf "SECRET_HERE" | docker secret create SECRET_NAME -

Deploy using the -c flag to specify one or multiple compose files.

docker stack deploy nextcloud -c compose.yaml -c compose.mariadb.yaml -c compose.smtp.yaml