Skip to content

Instantly share code, notes, and snippets.

@dnburgess
Last active June 19, 2020 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dnburgess/81973cde92ca668058094592b36fe00d to your computer and use it in GitHub Desktop.
Save dnburgess/81973cde92ca668058094592b36fe00d to your computer and use it in GitHub Desktop.
NextCloud Portainer Setup
version: '2'
volumes:
nextcloud:
db:
services:
db:
image: mariadb
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: always
volumes:
- db:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=p@55w0rd!
- MYSQL_PASSWORD=p@55w0rd!
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=nextcloud
app:
image: nextcloud
links:
- db
volumes:
- /srv/dev-disk-by-label-Files/NxtCld:/var/www/html
ports:
- 83:80
restart: always
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment