25 lines
700 B
YAML
25 lines
700 B
YAML
name: nextcloud-aio
|
|
services:
|
|
nextcloud-aio-mastercontainer:
|
|
image: ghcr.io/nextcloud-releases/all-in-one:latest
|
|
init: true
|
|
restart: always
|
|
container_name: nextcloud-aio-mastercontainer
|
|
volumes:
|
|
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
network_mode: bridge
|
|
ports:
|
|
- "8080:8080"
|
|
environment:
|
|
APACHE_PORT: 11000
|
|
APACHE_IP_BINDING: 10.26.48.4
|
|
NEXTCLOUD_DATADIR: /nextcloud_data
|
|
NEXTCLOUD_UPLOAD_LIMIT: 16G
|
|
NEXTCLOUD_MAX_TIME: 3600
|
|
NEXTCLOUD_MEMORY_LIMIT: 1024M
|
|
|
|
volumes:
|
|
nextcloud_aio_mastercontainer:
|
|
name: nextcloud_aio_mastercontainer
|