Compare commits

...

2 Commits

Author SHA1 Message Date
Mike Holloway
ea5b198f49 postgres testing 2025-12-03 15:39:53 -05:00
Mike Holloway
ee3417a12f podman env vars update 2025-12-03 15:26:22 -05:00

View File

@ -12,6 +12,10 @@ services:
VIRTUAL_HOST: "{{ inventory_hostname | default('ansible_undefined_fact') }}"
VIRTUAL_ROOT: "/var/www/html/"
LETSENCRYPT_HOST: "{{ inventory_hostname | default('ansible_undefined_fact') }}"
POSTGRES_DATABASE=nextclouddb
POSTGRES_USER="nextcloud"
POSTGRES_HOST="nextcloud-db.lan:5432"
NEXTCLOUD_TRUSTED_DOMAINS="{{ inventory_hostname | default('ansible_undefined_fact') }}"
networks:
default:
aliases:
@ -19,6 +23,14 @@ services:
volumes:
- ~/webroot:/var/www/html
database:
image: postgres:latest
restart: always
networks:
default:
aliases:
"nextcloud-db.lan"
nginx-proxy:
restart: unless-stopped
ports: