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
743 B
YAML

# [Dillinger](https://github.com/joemccann/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 UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- 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