29 lines
785 B
YAML
29 lines
785 B
YAML
# Theme.Park - Self-hosted CSS themes for various apps
|
|
# https://github.com/themepark-dev/theme.park
|
|
#
|
|
# Self-hosting eliminates external dependency on GitHub/CDN
|
|
# All themed apps should set: TP_DOMAIN=atlantis:8580
|
|
#
|
|
# Themed apps on Atlantis:
|
|
# - sonarr, radarr, lidarr, bazarr, prowlarr, tautulli
|
|
# - sabnzbd, jackett, whisparr, jellyseerr, deluge
|
|
# - plex, portainer, syncthing
|
|
version: "3.8"
|
|
|
|
services:
|
|
theme-park:
|
|
image: ghcr.io/themepark-dev/theme.park:latest
|
|
container_name: theme-park
|
|
environment:
|
|
- PUID=1029
|
|
- PGID=100
|
|
- TZ=America/Los_Angeles
|
|
ports:
|
|
- "8580:80"
|
|
- "8543:443"
|
|
volumes:
|
|
- /volume2/metadata/docker2/theme-park:/config
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|