deploy nc to server
All checks were successful
Deploy Containers / Prepare (push) Successful in 51s

This commit is contained in:
2025-07-30 22:16:30 -04:00
parent 5706f0a711
commit b60d0ee675
3 changed files with 112 additions and 96 deletions

View File

@@ -8,6 +8,10 @@
- "{{ data_dir }}/nextcloud/data"
- "{{ data_dir }}/nextcloud/db"
- name: Create Nextcloud Docker Network
docker_network:
name: nextcloud
- name: Create Nextcloud DB Docker Container
docker_container:
name: nc_postgresql
@@ -32,7 +36,7 @@
restart_policy: unless-stopped
recreate: true
networks:
- name: homelab
- name: "{{ docker_network_name }}"
- name: nextcloud
volumes:
- "{{ data_dir }}/nextcloud/data:/var/www/html"