mirror of
https://github.com/JaviPege/sailarr-installer.git
synced 2026-01-07 05:09:31 -06:00
33 lines
864 B
YAML
Executable File
33 lines
864 B
YAML
Executable File
# Plex Media Server
|
|
|
|
services:
|
|
plex:
|
|
image: ${PLEX_IMAGE}:${PLEX_TAG}
|
|
env_file:
|
|
- ../.env.defaults
|
|
- ../.env.local
|
|
container_name: plex
|
|
network_mode: host
|
|
restart: unless-stopped
|
|
environment:
|
|
- PUID=${PLEX_UID}
|
|
- PGID=${MEDIACENTER_GID}
|
|
- TZ=${TIMEZONE}
|
|
- VERSION=docker
|
|
- PLEX_CLAIM=${PLEX_CLAIM}
|
|
volumes:
|
|
- ${ROOT_DIR}/config/plex-config:/config
|
|
- ${ROOT_DIR}/data:/data
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "curl --fail --silent http://localhost:32400/identity && test -d /data/realdebrid-zurg && mountpoint -q /data/realdebrid-zurg"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 90s
|
|
depends_on:
|
|
seerr:
|
|
condition: service_healthy
|
|
restart: true
|
|
rclone:
|
|
condition: service_healthy
|
|
restart: true |