docker-bits/lsio/dillinger/docker-compose.yaml

24 lines
687 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [Dillinger](https://github.com/joemccann/dillinger) is a cloud-enabled,
# mobile-ready, offline-storage, AngularJS powered HTML5 Markdown editor.
2021-04-10 10:16:29 +00:00
---
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
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
volumes:
# Dillinger plugin config files
- ${BASEDIR:-/volume1/docker}/dillinger/config:/config
ports:
# The port for the Dillinger web interface
- 8080:8080
restart: unless-stopped