Removing nextcloud and owncloud instances from web

This commit is contained in:
2026-07-02 22:12:42 -04:00
parent d62774bd14
commit c9aa89ca87

View File

@@ -53,32 +53,6 @@ services:
- nginx_config:/etc/nginx/conf.d:ro
- /tandoor/statics:/static:ro
- /tandoor/media:/media:ro
nextcloud:
image: nextcloud:apache
container_name: nextcloud
restart: always
ports:
- "8086:80"
volumes:
- "/nextcloud:/var/www/html"
env_file: .nextcloud.env
networks:
- nextcloud_network
depends_on:
- redis
redis:
image: redis:alpine
container_name: nextcloud_redis
restart: always
command:
- /bin/sh
- -c
- redis-server --requirepass "$${REDIS_PASSWORD:?REDIS_PASSWORD variable is not set}"
volumes:
- redis_data:/data
networks:
- nextcloud_network
env_file: .redis_nextcloud.env
ntfy:
image: binwiederhier/ntfy
command: serve
@@ -89,41 +63,5 @@ services:
ports:
- "8082:80"
restart: unless-stopped
owncloud_redis:
image: redis:latest
container_name: owncloud_redis
restart: always
command: ["--databases", "1"]
networks:
- owncloud_network
owncloud_mariadb:
image: mariadb:latest
container_name: owncloud_mariadb
restart: always
command: ["--max-allowed-packet=128M", "--innodb-log-file-size=64M"]
env_file: .owncloud.env
volumes:
- "/owncloud/db:/var/lib/mysql"
networks:
- owncloud_network
owncloud:
image: owncloud/server:latest
container_name: owncloud_server
restart: always
ports:
- "8087:8080"
depends_on:
- owncloud_redis
- owncloud_mariadb
volumes:
- "/owncloud/data:/mnt/data"
networks:
- owncloud_network
volumes:
nginx_config:
redis_data:
networks:
nextcloud_network:
driver: bridge
owncloud_network:
driver: bridge