diff --git a/nextcloud/.env b/nextcloud/.env deleted file mode 100644 index 2c86816..0000000 --- a/nextcloud/.env +++ /dev/null @@ -1,20 +0,0 @@ -#GLOBAL SETTINGS -COMPOSE_HTTP_TIMEOUT=120 -COMPOSE_IGNORE_ORPHANS=1 -DOCKER_CONFIGS=. -DOCKERGID=999 -DOCKERHOSTNAME=DockerServer1 -DOCKERLOGGING_MAXFILE=10 -DOCKERLOGGING_MAXSIZE=200k -PGID=1000 -PUID=1000 -UMASK=000 -TZ=America/Chicago -BACKUP_DIR=/mnt/backups -MEDIA_DIR=/mnt/media -STORAGE_DIR=/mnt/storage - -# COLLABORA CODE -COLLABORA_DOMAIN=collabora.akanealw.com -COLLABORA_USERNAME=akanealw -COLLABORA_PASSWORD=rET7trWieaYVPCft*zLR diff --git a/nextcloud/.gitignore b/nextcloud/.gitignore deleted file mode 100644 index e3c9f88..0000000 --- a/nextcloud/.gitignore +++ /dev/null @@ -1 +0,0 @@ -collabora/ \ No newline at end of file diff --git a/nextcloud/compose.yml b/nextcloud/compose.yml deleted file mode 100644 index 006deda..0000000 --- a/nextcloud/compose.yml +++ /dev/null @@ -1,38 +0,0 @@ -services: - collabora: - container_name: collabora - image: collabora/code:22.05.14.3.1 - environment: - - alias_group1=${COLLABORA_DOMAIN} - - username=${COLLABORA_USERNAME} - - password=${COLLABORA_PASSWORD} - networks: - - reverse-proxy - ports: - - 9980:9980 - restart: always - volumes: - - ${DOCKER_CONFIGS}/collabora/code:/etc/loolwsd - - nextcloud: - container_name: nextcloud - image: lscr.io/linuxserver/nextcloud:latest - environment: - - PUID=${TZ} - - PGID=${TZ} - - TZ=${TZ} - networks: - - reverse-proxy - ports: - - 8443:443 - restart: unless-stopped - volumes: - - ${DOCKER_CONFIGS}/config:/config - - ${DOCKER_CONFIGS}/data:/data - - ${BACKUP_DIR}/:/backup - - ${STORAGE_DIR}/:/storage - -networks: - reverse-proxy: - name: reverse-proxy - external: true