Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Created October 28, 2020 22:49
Show Gist options
  • Save dnburgess/fdcaf27280e031fe88dd2fb9728649f6 to your computer and use it in GitHub Desktop.
Save dnburgess/fdcaf27280e031fe88dd2fb9728649f6 to your computer and use it in GitHub Desktop.
DB Tech NextCloud on Pi 4
version: '2'
volumes:
nextcloud:
db:
services:
db:
image: yobasystems/alpine-mariadb:latest
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always
volumes:
- /srv/dev-disk-by-label-Files/Databases/NextCloud:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=nextcloud
- MYSQL_PASSWORD=nextcloud
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=nextcloud
app:
image: nextcloud
ports:
- 8080:80
links:
- db
volumes:
- /srv/dev-disk-by-label-Files/Config/Nextcloud:/var/www/html
restart: always
@mrp-yt
Copy link

mrp-yt commented Sep 7, 2021

Suggestion: In your video you delete Volumes for nextcloud and db. Write quick tldr why inside this gist for others to understand a reason to use it or not

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment