forked from data.coop/ansible
Add nextcloud to ansible.
This commit is contained in:
parent
c005139fd8
commit
d443c29907
|
@ -5,8 +5,9 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- db:/var/lib/postgresql/data
|
- db:/var/lib/postgresql/data
|
||||||
env_file:
|
environment:
|
||||||
- nextcloud-db.env
|
- POSTGRES_DB=nextcloud
|
||||||
|
- POSTGRES_USER=nextcloud
|
||||||
|
|
||||||
app:
|
app:
|
||||||
image: nextcloud
|
image: nextcloud
|
||||||
|
|
|
@ -3,3 +3,9 @@
|
||||||
project_name: gitea
|
project_name: gitea
|
||||||
definition:
|
definition:
|
||||||
"{{ lookup('file', 'composefiles/gitea.yml') | from_yaml }}"
|
"{{ lookup('file', 'composefiles/gitea.yml') | from_yaml }}"
|
||||||
|
|
||||||
|
- name: setup nextcloud
|
||||||
|
docker_service:
|
||||||
|
project_name: nextcloud
|
||||||
|
definition:
|
||||||
|
"{{ lookup('file', 'composefiles/nextcloud.yml') | from_yaml }}"
|
||||||
|
|
Loading…
Reference in a new issue