Skip to content

Commit

Permalink
Merge pull request #18 from sonofborge/hotfixes
Browse files Browse the repository at this point in the history
Add env vars back
  • Loading branch information
bryborge authored May 8, 2022
2 parents 7fc6e49 + e231417 commit bdd34be
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .env.dist
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ADGUARD_PORT=<adguard-server-port>

# Cloudflare / Domain
CLOUDFLARE_EMAIL=<my-cloudflare@email.com>
CF_API_KEY=<my-cloudflare-api-key>
CLOUDFLARE_API_KEY=<my-cloudflare-api-key>
DOMAIN_NAME=<my-domain.com>

# Docker
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.override.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ services:
plex:
container_name: plex
environment:
- ADVERTISE_IP=${ADVERTISE_IP}
- HOSTNAME="Plex"
- PLEX_CLAIM=${PLEX_CLAIM}
- PGID=${PLEX_GID}
- PUID=${PLEX_UID}
image: plexinc/pms-docker:1.25.4.5487-648a8f9f9
labels:
- traefik.enable=true
Expand Down
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ services:
- --providers.file.directory=/etc/traefik/rules
- --providers.file.watch=true # watch top-level rules/ dir for file changes
container_name: traefik
environment:
- ADGUARD_IP=${ADGUARD_IP}
- ADGUARD_PORT=${ADGUARD_PORT}
- CF_API_KEY=${CLOUDFLARE_API_KEY}
- CLOUDFLARE_EMAIL=${CLOUDFLARE_EMAIL}
- DOMAIN_NAME=${DOMAIN_NAME}
image: traefik:v2.6.0
labels:
- traefik.enable=true
Expand Down

0 comments on commit bdd34be

Please sign in to comment.