Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: '2'
- services:
- db:
- image: mariadb:10.5
- restart: always
- command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
- volumes:
- - /volume1/docker/Nextcloud/database:/var/lib/mysql
- environment:
- - MYSQL_ROOT_PASSWORD=password_goes_here
- - MYSQL_PASSWORD=password_goes_here
- - MYSQL_DATABASE=nextcloud
- - MYSQL_USER=user_goes_here
- app:
- image: nextcloud
- restart: always
- ports:
- - 8088:80
- links:
- - db
- volumes:
- - /volume1/docker/Nextcloud/config:/var/www/html
- environment:
- - MYSQL_PASSWORD=password_goes_here
- - MYSQL_DATABASE=nextcloud
- - MYSQL_USER=user_goes_here
- - MYSQL_HOST=db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement