-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
29 lines (28 loc) · 878 Bytes
/
compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
services:
plexbridge-app:
image: ghcr.io/vandaahl/plexbridge:latest
restart: unless-stopped
volumes:
- ./logs:/app/var/log
- ./settings.json:/app/var/settings.json
- ./trakt-token-data.json:/app/var/trakt-token-data.json
environment:
# Port in URL must match port assigned to nginx
- TRAKT_REDIRECT_URL=http://localhost:8000/redirect
- TZ=Europe/Amsterdam
ports:
- "8000:8080"
secrets:
- trakt_client_id
- trakt_client_secret
- letterboxd_cookie_user_value
- letterboxd_cookie_csrf_value
secrets:
trakt_client_id:
file: secrets/trakt_client_id.txt
trakt_client_secret:
file: secrets/trakt_client_secret.txt
letterboxd_cookie_user_value:
file: secrets/letterboxd_cookie_user_value.txt
letterboxd_cookie_csrf_value:
file: secrets/letterboxd_cookie_csrf_value.txt