You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
645 B
YAML

# Dillinger is a cloud-enabled, mobile-ready, offline-storage, AngularJS powered
# HTML5 Markdown editor.
---
version: "2.1"
services:
dillinger:
image: ghcr.io/linuxserver/dillinger
container_name: dillinger
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# Dillinger plugin config files
- ${BASEDIR:-/volume1/docker}/dillinger/config:/config
ports:
# The port for the Dillinger web interface
- 8080:8080
restart: unless-stopped