From c464fef0d937d85ebb4f90e944c262f94fc31783 Mon Sep 17 00:00:00 2001 From: peskyadmin Date: Wed, 4 Jun 2025 10:04:59 -0500 Subject: [PATCH] manual init --- docker-compose.yml | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 72aa767..53497d2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ services: - {{service}}-ts: + nextcloud-aio-ts: image: tailscale/tailscale:latest - hostname: {{service}} - container_name: {{service}}-ts + hostname: nextcloud-aio + container_name: nextcloud-aio-ts environment: - TS_AUTHKEY={{YOUR_TAILSCALE_AUTHKEY}} - TS_STATE_DIR=/var/lib/tailscale @@ -15,7 +15,20 @@ services: - net_admin - sys_module restart: unless-stopped - {{service-compose}} - network_mode: service:{{service}}-ts + nextcloud-aio: + image: ghcr.io/nextcloud-releases/all-in-one:latest + container_name: nextcloud-aio-mastercontainer + init: true + restart: always + # ports: + # - "80:80" + # - "8080:8080" + # - "8443:8443" + volumes: + - nextcloud_aio_mastercontainer:/mnt/docker-aio-config + - /var/run/docker.sock:/var/run/docker.sock:ro + extra_hosts: + - "host.docker.internal:host-gateway" + network_mode: service:nextcloud-aio-ts depends_on: - - {{service}}-ts \ No newline at end of file + - nextcloud-aio-ts \ No newline at end of file