25 lines
600 B
YAML
25 lines
600 B
YAML
---
|
|
|
|
version: "3.8"
|
|
services:
|
|
nextcloud-aio-mastercontainer:
|
|
image: nextcloud/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
|
|
ports:
|
|
- 8680:8080
|
|
environment:
|
|
- APACHE_PORT=11000
|
|
- APACHE_IP_BINDING=$BIND_IP
|
|
- COLLABORA_SECCOMP_DISABLED=true
|
|
- NEXTCLOUD_DATADIR=$SHARE
|
|
|
|
volumes:
|
|
nextcloud_aio_mastercontainer:
|
|
name: nextcloud_aio_mastercontainer
|
|
driver: local
|