Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ngophuong/7d090abc76c983bc6884b9e852649f91 to your computer and use it in GitHub Desktop.
Save ngophuong/7d090abc76c983bc6884b9e852649f91 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment