docker-compose (recommended, click here for more info) --- services: readarr: image: lscr.io/linuxserver/readarr:develop container_name: readarr environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC volumes: - /path/to/readarr/data:/config - /path/to/books:/books #optional - /path/to...
Run using docker-compose services: bookbounty: image: thewicklowwolf/bookbounty:latest container_name: bookbounty ports: - 5000:5000 volumes: - /path/to/config:/bookbounty/config - /path/to/downloads:/bookbounty/downloads - /etc/localtime:/etc/localtime:ro restart: unless-stopped Configurat...
./docker/posterr/custom version: '2.4' services: posterr: image: petersem/posterr container_name: posterr environment: TZ: Australia/Brisbane BASEPATH: "" volumes: - ./docker/posterr/config:/usr/src/app/config - ./docker/posterr/custom:/usr/src/app/public/custom ports: - 9876:3000 re...