From 1d043702ef136e8f2e516c5304a57be5718f1f6f Mon Sep 17 00:00:00 2001 From: Tyler Hoang Date: Thu, 9 Jul 2026 21:49:56 -0700 Subject: Initial commit: docker compose files for all self-hosted services 12 services: adguard, ampache, azuracast, flood, glance, glances, grafana, immich, invidious, jellyfin, openwebui, watchtower Each service includes a docker-compose.yml, README.md with setup instructions, and .env.example where applicable. --- azuracast/.env.example | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 azuracast/.env.example (limited to 'azuracast/.env.example') diff --git a/azuracast/.env.example b/azuracast/.env.example new file mode 100644 index 0000000..de840e3 --- /dev/null +++ b/azuracast/.env.example @@ -0,0 +1,48 @@ +# This file was automatically generated by AzuraCast. +# You can modify it as necessary. To apply changes, restart the Docker containers. +# Remove the leading "#" symbol from lines to uncomment them. + +# (Docker Compose) All Docker containers are prefixed by this name. Do not change this after installation. +# Default: azuracast +COMPOSE_PROJECT_NAME=azuracast + +# (Docker Compose) The amount of time to wait before a Docker Compose operation fails. Increase this on lower performance computers. +# Default: 300 +COMPOSE_HTTP_TIMEOUT=300 + +# Release Channel +# Valid options: latest, stable +# Default: latest +AZURACAST_VERSION=latest + +# HTTP Port +# The main port AzuraCast listens to for insecure HTTP connections. +# Default: 80 +AZURACAST_HTTP_PORT=8080 + +# HTTPS Port +# The main port AzuraCast listens to for secure HTTPS connections. +# Default: 443 +AZURACAST_HTTPS_PORT=8443 + +# SFTP Port +# The port AzuraCast listens to for SFTP file management connections. +# Default: 2022 +# AZURACAST_SFTP_PORT=2022 + +# Station Ports +# The ports AzuraCast should listen to for station broadcasts and incoming DJ connections. +# AZURACAST_STATION_PORTS=8000,8005,8006,... + +# Docker User UID +# AZURACAST_PUID=1000 + +# Docker User GID +# AZURACAST_PGID=1000 + +# Advanced: Use Privileged Docker Settings +# Default: true +# AZURACAST_COMPOSE_PRIVILEGED=true + +# Additional Environment Variables +NGINX_TIMEOUT=1800 -- cgit v1.3-2-g0d8e