linuxserver/davos.

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

4,683,320 41 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/davos
Build Time 12 Apr 2024 18:48:02
Category Productivity
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 2.2.2 12 Apr 2024 at 18:48:01

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  davos:
    image: linuxserver/davos:2.2.2
    container_name: davos
    restart: unless-stopped
    environment:
      - PUID=for UserID
      - PGID=for GroupID
    volumes:
      - /host/path/to/etc/localtime:/etc/localtime:ro # Useful for mapping correct host timezone
      - /host/path/to/download:/download # davos's file download location
      - /host/path/to/config:/config # davos's config location. This is where it stores its database file and logs.
    ports:
      - 8080:8080/tcp # This is the default port that davos runs under

CLI

docker create \
  --name=davos \
  -e PUID=for UserID \
  -e PGID=for GroupID \
  -v /host/path/to/etc/localtime:/etc/localtime:ro `# Useful for mapping correct host timezone` \
  -v /host/path/to/download:/download `# davos's file download location` \
  -v /host/path/to/config:/config `# davos's config location. This is where it stores its database file and logs.` \
  -p 8080:8080/tcp `# This is the default port that davos runs under` \
  --restart unless-stopped \
  linuxserver/davos:2.2.2