mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-18 15:25:41 +00:00
24 lines
664 B
YAML
24 lines
664 B
YAML
# [Raneto](http://raneto.com/) - is an open source Knowledgebase platform that
|
|
# uses static Markdown files to power your Knowledgebase.
|
|
|
|
---
|
|
version: "2.1"
|
|
services:
|
|
raneto:
|
|
image: ghcr.io/linuxserver/raneto
|
|
container_name: raneto
|
|
environment:
|
|
# for UserID
|
|
- PUID=${PUID:-1024}
|
|
# for GroupID
|
|
- PGID=${PGID:-100}
|
|
# Specify a timezone to use for example Europe/Amsterdam
|
|
- TZ=${TZ:-Europe/Amsterdam}
|
|
volumes:
|
|
# Raneto config and Markdown files
|
|
- ${BASEDIR:-/volume1/docker}/raneto/config:/config
|
|
ports:
|
|
# The port for the Raneto web interface
|
|
- 3000:3000
|
|
restart: unless-stopped
|