28 lines
648 B
YAML
28 lines
648 B
YAML
services:
|
|
nextcloud-aio-mastercontainer:
|
|
image: ghcr.io/nextcloud-releases/all-in-one:latest
|
|
container_name: nextcloud-aio-mastercontainer
|
|
restart: always
|
|
ports:
|
|
- "${AIO_PORT:-8081}:8080"
|
|
volumes:
|
|
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
environment:
|
|
- APACHE_PORT=11000
|
|
- NEXTCLOUD_DATADIR=${STORAGE_PATH}/nextcloud
|
|
- APACHE_ADDITIONAL_NETWORK=web
|
|
networks:
|
|
- nextcloud-aio
|
|
- web
|
|
env_file:
|
|
- ../.env
|
|
|
|
volumes:
|
|
nextcloud_aio_mastercontainer:
|
|
|
|
networks:
|
|
nextcloud-aio:
|
|
web:
|
|
external: true
|