Skip to content

Commit

Permalink
chore(docker): retire the old Nextcloud instance
Browse files Browse the repository at this point in the history
Everyone migrated, so this one can be retired in favor of the AIO managed containers
  • Loading branch information
dr460nf1r3 committed May 17, 2024
1 parent 2002406 commit 6b1d5cc
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions docker-compose/all-in-one/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,5 @@
---
services:
# Garuda Cloud
nextcloud_app:
image: linuxserver/nextcloud:27.0.1 # locked, newer versions can't be pulled!
container_name: nextcloud
depends_on: [nextcloud_db, nextcloud_redis]
environment:
PUID: 1000
PGID: 1000
TZ: Europe/Berlin
ports: [443:443]
volumes: [./nextcloud/config:/config, ./nextcloud/data:/data]
restart: always
nextcloud_db:
image: mariadb:11.3.2
container_name: nextcloud_db
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
environment:
MYSQL_ROOT_PASSWORD: ${NC_ROOT_PASSWORD:-?err}
MYSQL_PASSWORD: ${NC_PASSWORD:-?err}
MYSQL_DATABASE: ${NC_DATABASE:-?err}
MYSQL_USER: ${NC_USER:-?err}
volumes: [./nextcloud/db:/var/lib/mysql]
restart: always
nextcloud_redis:
image: redis:7.2.4
container_name: nextcloud_redis
environment:
ALLOW_EMPTY_PASSWORD: true
restart: always

# Nextcloud AIO (self-managed containers)
nextcloud-aio-mastercontainer:
image: nextcloud/all-in-one:latest
Expand Down

0 comments on commit 6b1d5cc

Please sign in to comment.