docker-bits/lsio/raneto/docker-run.sh

14 lines
550 B
Bash
Raw Normal View History

2021-04-10 10:16:29 +00:00
# Raneto - is an open source Knowledgebase platform that uses static Markdown
# files to power your Knowledgebase.
source ./.env
docker run -d \
--name=raneto \
-e PUID=${PUID:-1024} `# for GroupID` \
-e PGID=${PGID:-100} `# for UserID` \
2021-04-13 00:58:58 +00:00
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
2021-04-10 10:16:29 +00:00
-p 3000:3000 `# The port for the Raneto web interface` \
-v ${BASEDIR:-/volume1/docker}/raneto/config:/config `# Raneto config and Markdown files` \
--restart unless-stopped \
ghcr.io/linuxserver/raneto