63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
# Nextcloud configuration.
|
|
# This is a revised version of the original work here:
|
|
# https://hub.docker.com/_/nextcloud
|
|
|
|
# Changelog:
|
|
# 2023-07-16 Change from mariadb:10.5 to 10.6.
|
|
# 2023-08-20 Add Redis. (https://markontech.com/docker/setup-nextcloud-with-redis-using-docker/)
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
db:
|
|
container_name: nc-db
|
|
image: mariadb:10.6
|
|
restart: always
|
|
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
|
|
volumes:
|
|
- ../../Volumes/Nextcloud/mariadb:/var/lib/mysql
|
|
environment:
|
|
- MYSQL_DATABASE=$MYSQL_DATABASE
|
|
- MYSQL_ROOT_PASSWORD=$MYSQL_ROOT_PASSWORD
|
|
- MYSQL_USER=$MYSQL_USER
|
|
- MYSQL_PASSWORD=$MYSQL_PASSWORD
|
|
networks:
|
|
hostnet: {}
|
|
|
|
redis:
|
|
container_name: nc-redis
|
|
image: redis
|
|
restart: always
|
|
command: redis-server --requirepass $REDIS_HOST_PASSWORD
|
|
networks:
|
|
hostnet: {}
|
|
|
|
app:
|
|
container_name: nc-app
|
|
image: nextcloud
|
|
restart: always
|
|
ports:
|
|
- 8080:80
|
|
links:
|
|
- db
|
|
- redis
|
|
volumes:
|
|
- ../../Volumes/Nextcloud/nextcloud:/var/www/html
|
|
environment:
|
|
- MYSQL_HOST=$MYSQL_HOST
|
|
- MYSQL_DATABASE=$MYSQL_DATABASE
|
|
- MYSQL_USER=$MYSQL_USER
|
|
- MYSQL_PASSWORD=$MYSQL_PASSWORD
|
|
- PHP_UPLOAD_LIMIT=$PHP_UPLOAD_LIMIT
|
|
- REDIS_HOST=$REDIS_HOST
|
|
- REDIS_HOST_PASSWORD=$REDIS_HOST_PASSWORD
|
|
#dns:
|
|
# - $DNS
|
|
networks:
|
|
hostnet: {}
|
|
|
|
networks:
|
|
hostnet:
|
|
external: true
|
|
name: host
|