mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
30 lines
652 B
YAML
30 lines
652 B
YAML
services:
|
|
profilarr:
|
|
image: santiagosayshey/profilarr:latest
|
|
container_name: profilarr
|
|
restart: unless-stopped
|
|
ports:
|
|
- "6868: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: santiagosayshey/profilarr-parser:latest
|
|
container_name: profilarr-parser
|
|
restart: unless-stopped
|
|
expose:
|
|
- "5000"
|