mirror of
https://github.com/ghndrx/docker-compose.git
synced 2026-02-10 06:45:14 +00:00
26 lines
947 B
Plaintext
26 lines
947 B
Plaintext
<!-- This file contains environment variables for configuring Traefik, Nextcloud, and Ghost services. The variables include domain names, passwords, and database names. The commented out sections include configuration for Prometheus and Grafana services. -->
|
|
# Traefik configuration
|
|
TRAEFIK_DOMAIN=example.com
|
|
TRAEFIK_CERT_RESOLVER=myresolver
|
|
TRAEFIK_HOST=example.com
|
|
ACME_EMAIL=admin@example.com
|
|
|
|
# Nextcloud configuration
|
|
NEXTCLOUD_DOMAIN=cloud.example.com
|
|
NEXTCLOUD_ADMIN_USER=admin
|
|
NEXTCLOUD_ADMIN_PASSWORD=Password123!
|
|
NEXTCLOUD_TRUSTED_DOMAINS=cloud.example.com
|
|
NEXTCLOUD_DB_NAME=nextcloud_db
|
|
NEXTCLOUD_DB_USER=nextcloud_user
|
|
NEXTCLOUD_DB_ROOT_PASSWORD=nextcloud_mysql
|
|
NEXTCLOUD_DB_PASSWORD=nextcloud_mysql
|
|
NEXTCLOUD_HOST=cloud.example.com
|
|
|
|
# Ghost configuration
|
|
GHOST_DOMAIN=blog.example.com
|
|
GHOST_DB_ROOT_PASSWORD=ghost_mysql
|
|
GHOST_DB_NAME=ghost_db
|
|
GHOST_DB_USER=ghost_user
|
|
GHOST_DB_PASSWORD=ghost_mysql
|
|
GHOST_URL=https://blog.example.com
|