linuxserver/dillinger.

1,367,320 26 amd64 arm64 Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/dillinger
Build Time 20 Mar 2024 20:11:11
Category Development
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 3.39.1 20 Mar 2024 at 20:11:10

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  dillinger:
    image: linuxserver/dillinger:3.39.1
    container_name: dillinger
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/config:/config # Dillinger plugin config files
    ports:
      - 8080:8080/tcp # The port for the Dillinger web interface

CLI

docker create \
  --name=dillinger \
  -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/config:/config `# Dillinger plugin config files` \
  -p 8080:8080/tcp `# The port for the Dillinger web interface` \
  --restart unless-stopped \
  linuxserver/dillinger:3.39.1