Title logo
linuxserver/couchpotato.

A CouchPotato container, brought to you by LinuxServer.io.

149,116,681 390 arm64 amd64 arm Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/couchpotato
Build Time 01 Mar 2022 00:20:01
Category Media
Synchronised Yes
Stable Yes
Deprecated Yes

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest version-7260c12f 01 Mar 2022 at 00:20:01

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  couchpotato:
    image: linuxserver/couchpotato:version-7260c12f
    container_name: couchpotato
    restart: unless-stopped
    environment:
      - UMASK_SET=022 # for umask setting of couchpotato, optional , default if left unset is 022
      - TZ=Europe/London # Specify a timezone to use EG Europe/London
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/movies:/movies # Movie Share.
      - /host/path/to/downloads:/downloads # Downloads Folder.
      - /host/path/to/config:/config # Couchpotato Application Data.
    ports:
      - 5050:5050/tcp # HTTP gui

CLI

docker create \
  --name=couchpotato \
  -e UMASK_SET=022 `# for umask setting of couchpotato, optional , default if left unset is 022` \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -v /host/path/to/movies:/movies `# Movie Share.` \
  -v /host/path/to/downloads:/downloads `# Downloads Folder.` \
  -v /host/path/to/config:/config `# Couchpotato Application Data.` \
  -p 5050:5050/tcp `# HTTP gui` \
  --restart unless-stopped \
  linuxserver/couchpotato:version-7260c12f