feat: initial upload
This commit is contained in:
commit
2ce2ac7c65
2 changed files with 23 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
*.env
|
22
service.yml
Normal file
22
service.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue