-
Notifications
You must be signed in to change notification settings - Fork 4
/
compose.yml
54 lines (53 loc) · 1.5 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
services:
tidarr:
build:
context: .
dockerfile: './docker/Dockerfile.dev'
container_name: 'tidarr'
platform: linux/amd64
ports:
- 8484:8484
- 3000:3000
volumes:
- ./docker/mnt/config:/home/app/standalone/shared
- ./docker/mnt/download/albums:/home/app/standalone/download/albums
- ./docker/mnt/download/tracks:/home/app/standalone/download/tracks
- ./docker/mnt/download/playlists:/home/app/standalone/download/playlists
- .:/home/app/build # only used in dev environment
restart: 'unless-stopped'
environment:
- PUID=
- PGID=
- TZ=Etc/UTC
- ENABLE_BEETS=
- ENABLE_PLEX_UPDATE=
- PLEX_URL=
- PLEX_LIBRARY=
- PLEX_TOKEN=
- PLEX_PATH=
- ENABLE_GOTIFY=
- GOTIFY_URL=
- GOTIFY_TOKEN=
testing:
build:
context: .
dockerfile: './docker/Dockerfile.e2e'
container_name: 'tidarr-testing'
platform: linux/amd64
volumes:
- .:/home/app/build
ports:
- 9323:9323
environment:
- REACT_APP_TIDAL_COUNTRY_CODE=CA
- REACT_APP_TIDAL_SEARCH_TOKEN=CzET4vdadNUFQ5JU
- REACT_APP_TIDARR_SEARCH_URL=http://www.tidal.com/album/
- ENABLE_BEETS=true
- ENABLE_PLEX_UPDATE=true
- PLEX_URL=http://plex.url
- PLEX_LIBRARY=3
- PLEX_TOKEN=abc-plex-token-xyz
- PLEX_PATH=/fodler/to/plex/music
- ENABLE_GOTIFY=true
- GOTIFY_URL=http://gotify.url
- GOTIFY_TOKEN=abc-gotify-token-xyz