Created
October 28, 2020 22:49
-
-
Save dnburgess/fdcaf27280e031fe88dd2fb9728649f6 to your computer and use it in GitHub Desktop.
Revisions
-
dnburgess created this gist
Oct 28, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ 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