add nextcloud-aio wip
Some checks are pending
/ run ansible (push) Waiting to run

This commit is contained in:
Gabriel Augendre 2024-10-12 15:45:47 +02:00
parent cb1a169091
commit 63b4190201
3 changed files with 43 additions and 0 deletions

View file

@ -129,6 +129,19 @@ tcl.augendre.info {
reverse_proxy localhost:8013 reverse_proxy localhost:8013
} }
cloud-aio.augendre.info {
import common_headers
reverse_proxy localhost:8014
}
aio.augendre.info {
import common_headers
reverse_proxy https://localhost:8015 {
transport http {
tls_insecure_skip_verify
}
}
}
## Ghost blogs (ports >=2368) ## Ghost blogs (ports >=2368)
######################################################### #########################################################

View file

@ -0,0 +1,19 @@
services:
nextcloud:
image: nextcloud/all-in-one:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
environment:
APACHE_PORT: 8014
APACHE_IP_BINDING: 127.0.0.1
NEXTCLOUD_DATADIR: /mnt/data/nextcloud-aio/nextcloud_data
ports:
- "8015:8080"
restart: always
container_name: nextcloud-aio-mastercontainer
init: true
volumes:
nextcloud_aio_mastercontainer:
name: nextcloud_aio_mastercontainer

View file

@ -0,0 +1,11 @@
---
- name: Nextcloud2
hosts: servers
gather_facts: false
tasks:
- name: Docker
ansible.builtin.include_role:
name: docker
vars:
docker_app_name: nextcloud-aio