-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathcompose.yml
More file actions
29 lines (28 loc) · 670 Bytes
/
compose.yml
File metadata and controls
29 lines (28 loc) · 670 Bytes
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:
profilarr:
image: ghcr.io/dictionarry-hub/profilarr:develop
container_name: profilarr
restart: unless-stopped
ports:
- '6869:6868'
volumes:
- ./config:/config
environment:
- PUID=1000
- PGID=1000
- UMASK=022
- TZ=Etc/UTC
# - PORT=6868
# - HOST=0.0.0.0
- PARSER_HOST=parser
- PARSER_PORT=5000
depends_on:
parser:
condition: service_healthy
# Optional - only needed for CF/QP testing features
parser:
image: ghcr.io/dictionarry-hub/profilarr-parser:develop
container_name: profilarr-parser
restart: unless-stopped
expose:
- '5000'