commit 2ce2ac7c652030918ede8493b023f04b2137d8ce Author: Marc Cataford Date: Sat Oct 19 23:56:35 2024 -0400 feat: initial upload diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..03bd412 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.env diff --git a/service.yml b/service.yml new file mode 100644 index 0000000..67ed6aa --- /dev/null +++ b/service.yml @@ -0,0 +1,22 @@ +name: nextcloud +ports: + - host: 2100 + container: 80 +volumes: + - name: db + - name: nextcloud-data + - name: nextcloud-config +containers: + - name: db + image: postgres:16.2 + volumes: + - name: db + container: /var/lib/postgresql/data + env-file: ./start.env + - name: app + image: nextcloud:30.0.1-apache # Updated: 19/10/2024 + volumes: + - name: nextcloud-data + container: /var/www/html/data + - name: nextcloud-config + container: /var/www/html/config