mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
ec66655997
- move core configuratiion (authelia, traefik) to main .env - move all hostname definitions to main .env - add cloudflare ddns to automatically create DNS records - automatically determine stremio addon hostnames for authelia using predefined hostname environment variables - give all services a profile, including the previously implicit "default" services. Instead provide an explicit "required" profile that contains traefik and authelia. Allowing you to restart a specific profile without including the previous default services and also allowing you to have more control.
14 lines
743 B
Bash
14 lines
743 B
Bash
# Claim token for Plex. You can get it from https://www.plex.tv/claim
|
|
# It is only valid for 5 minutes, so after generating one, you must set it here and start your container.
|
|
# For the inital setup, you may need to have port 32400 open to access the web interface through the server IP, rather
|
|
# than through the hostname. i.e. http://<your-ip>:32400
|
|
# Once the setup is complete, you can use the hostname to access the web interface.
|
|
PLEX_CLAIM=
|
|
|
|
|
|
# Note: If you decide to use west's plex requests, you will have to disable traefik from here
|
|
# (or leave it enabled through a different domain)
|
|
# You can do this by setting the PLEX_TRAEFIK variable to false.
|
|
# You would then enable traefik for plex_requests_nginx
|
|
PLEX_TRAEFIK_ENABLE=true
|