linuxserver/chevereto.

348,308 45 amd64 arm arm64 Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/chevereto
Build Time 10 Jun 2022 08:20:05
Category Websites
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 1.6.2 10 Jun 2022 at 08:20:05

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  chevereto:
    image: linuxserver/chevereto:1.6.2
    container_name: chevereto
    restart: unless-stopped
    environment:
      - TZ=Europe/London
      - PUID=1000
      - PGID=1000
    volumes:
      - /host/path/to/config:/config # All config files
    ports:
      - 443:443/tcp # HTTPS
      - 80:80/tcp # HTTP

CLI

docker create \
  --name=chevereto \
  -e TZ=Europe/London \
  -e PUID=1000 \
  -e PGID=1000 \
  -v /host/path/to/config:/config `# All config files` \
  -p 443:443/tcp `# HTTPS` \
  -p 80:80/tcp `# HTTP` \
  --restart unless-stopped \
  linuxserver/chevereto:1.6.2