Knowledge docker-compose

pigers

pigers

Maruda
Q's Excellence
Jul 26, 2013
14,434
48
2,553
230
www.buymeacoffee.com
QNAP
null
Ethernet
100 GbE
  • ·
  • 100 GbE
  • ·
  • Ten którego QNAP jeszcze nie ma ! Najnowszy na Debianie !
Instalacja i konfiguracja zestawu:
docker-compose dla mediów vi docker-compose.yml
Code:
version: '3.3'
services:
    portainer-ce:
        ports:
            - '9000:9000'
        container_name: portainer
        volumes:
            - '/var/run/docker.sock:/var/run/docker.sock'
            - 'portainer_config:/data'
        restart: always
        image: portainer/portainer-ce
    qbittorrent:
        container_name: qbittorrent
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - TZ=${apps_timezone}
            - WEBUI_PORT=${qbitorrent_port}
        ports:
            - '6881:6881'
            - '6881:6881/udp'
            - '${qbitorrent_port}:9092'
        volumes:
            - 'qbittorrent_config:/config'
            - '${download_path}:/downloads'
        restart: ${apps_restartpolicy}
        image: linuxserver/qbittorrent
    radarr:
        container_name: radarr
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - TZ=${apps_timezone}
        ports:
            - '${radarr_port}:7878'
        volumes:
            - 'radarr_config:/config'
            - '${radarr_movies}:/movies'
            - '${download_path}:/downloads'
        restart: ${apps_restartpolicy}
        image: linuxserver/radarr
    sonarr_anime:
        container_name: sonarr_anime
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - TZ=${apps_timezone}
        ports:
            - '${sonarranime_port}:8989'
        volumes:
            - 'sonarr_config_anime:/config'
            - '${sonarranime_folder}:/data'
            - '${download_path}:/downloads'
        restart: ${apps_restartpolicy}
        image: 'linuxserver/sonarr:develop'
    sonarr_series:
        container_name: sonarr_series
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - TZ=${apps_timezone}
        ports:
            - '${sonarrseries_port}:8989'
        volumes:
            - 'sonarr_config_series:/config'
            - '${sonarrseries_folder}:/data'
        restart: ${apps_restartpolicy}
        image: 'linuxserver/sonarr:develop'
    prowlarr:
        container_name: prowlarr
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - TZ=${apps_timezone}
        ports:
            - '${prowlarr_port}:9696'
        volumes:
            - 'prowlarr_config:/config'
        restart: ${apps_restartpolicy}
        image: 'linuxserver/prowlarr:develop'
    emby:
        container_name: emby_server
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - TZ=${apps_timezone}
        ports:
            - '${emby_port}:8096'
        volumes:
            - 'emby_config:/config'
            - '${emby_folder1}:/data/movies'
            - '${emby_folder2}:/data/series'
            - '${emby_folder3}:/data/anime'
        devices:
            - '/dev/dri:/dev/dri'
        restart: ${apps_restartpolicy}
        image: linuxserver/emby
    jellyseer:
        container_name: jellyseer
        environment:
            - PUID=${apps_puid}
            - PGID=${apps_guid}
            - LOG_LEVEL=debug
            - JELLYFIN_TYPE=emby
            - TZ=${apps_timezone}
        ports:
            - '${jellyseer_port}:5055'
        volumes:
            - 'jellyseer_config:/app/config'
        restart: ${apps_restartpolicy}
        image: fallenbagel/jellyseerr:latest
volumes:
    portainer_config:
        driver: local
    qbittorrent_config:
        driver: local
    radarr_config:
        driver: local
    sonarr_config_anime:
        driver: local
    sonarr_config_series:
        driver: local
    prowlarr_config:
        driver: local
    emby_config:
        driver: local
    jellyseer_config:
        driver: local

plik z ustawieniami vi .env
Code:
########################ustawienia kontenerow##################################
# primary user ID -> id -u
apps_puid=1000
# primary group ID -> id -g
apps_guid=1000
# should container be up after reboot ?  https://docs.docker.com/config/containers/start-containers-automatically/
apps_restartpolicy=unless-stopped
# all applications timezone https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
apps_timezone=Europe/Warsaw
########################pobieranie torrent##################################
#qbitorrent webport - https://hub.docker.com/r/linuxserver/qbittorrent
qbitorrent_port=9092
#path where downloaded data will be https://hub.docker.com/r/linuxserver/qbittorrent
download_path=/media/mmedia/Downloads
#######################################################################
#radarr web port https://hub.docker.com/r/linuxserver/radarr
radarr_port=7878
#path where movies are residing
radarr_movies=/media/mmedia/Filmy
#######################sonarr seriale#######################################
#sonarr for tv series webport https://hub.docker.com/r/linuxserver/sonarr
sonarrseries_port=8998
#sonarr for anime video's location
sonarranime_folder=/media/mmedia/Anime
########################sonarr anime######################################
#sonarr for anime webport https://hub.docker.com/r/linuxserver/sonarr
sonarranime_port=8999
#sonarr for tv series video location
sonarrseries_folder=/media/mmedia/Seriale
##########################indexer########################################
#prowlarr web port https://hub.docker.com/r/linuxserver/prowlarr
prowlarr_port=9696
##########################emby#########################################
#emby port https://hub.docker.com/r/linuxserver/emby
emby_port=8096
#emby folders with data
emby_folder1=/media/mmedia/Anime
emby_folder2=/media/mmedia/Seriale
emby_folder3=/media/mmedia/Filmy
##########################nadzorca#######################################
#jellyseer port https://hub.docker.com/r/fallenbagel/jellyseerr
jellyseer_port=5056
 
  • Like
Reactions: jerry1333
pigers

pigers

Maruda
Q's Excellence
Jul 26, 2013
14,434
48
2,553
230
www.buymeacoffee.com
QNAP
null
Ethernet
100 GbE
  • ·
  • 100 GbE
  • ·
  • Ten którego QNAP jeszcze nie ma ! Najnowszy na Debianie !
You must log in or register to view this reply.
 
pigers

pigers

Maruda
Q's Excellence
Jul 26, 2013
14,434
48
2,553
230
www.buymeacoffee.com
QNAP
null
Ethernet
100 GbE
  • ·
  • 100 GbE
  • ·
  • Ten którego QNAP jeszcze nie ma ! Najnowszy na Debianie !
You must log in or register to view this reply.
 
pigers

pigers

Maruda
Q's Excellence
Jul 26, 2013
14,434
48
2,553
230
www.buymeacoffee.com
QNAP
null
Ethernet
100 GbE
  • ·
  • 100 GbE
  • ·
  • Ten którego QNAP jeszcze nie ma ! Najnowszy na Debianie !
You must log in or register to view this reply.
 
pigers

pigers

Maruda
Q's Excellence
Jul 26, 2013
14,434
48
2,553
230
www.buymeacoffee.com
QNAP
null
Ethernet
100 GbE
  • ·
  • 100 GbE
  • ·
  • Ten którego QNAP jeszcze nie ma ! Najnowszy na Debianie !
You must log in or register to view this reply.
 
pigers

pigers

Maruda
Q's Excellence
Jul 26, 2013
14,434
48
2,553
230
www.buymeacoffee.com
QNAP
null
Ethernet
100 GbE
  • ·
  • 100 GbE
  • ·
  • Ten którego QNAP jeszcze nie ma ! Najnowszy na Debianie !
You must log in or register to view this reply.
 

Users search this thread by keywords

  1. radarr
  2. docker-compose
  3. Docker Hub
  4. qBitorrent
  5. docker
  6. emby