mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-03 03:40:25 +00:00
18 lines
1008 B
Bash
18 lines
1008 B
Bash
|
# Kanzi, formerly titled Kodi-Alexa, this custom skill is the ultimate voice
|
||
|
# remote control for navigating Kodi. It can do anything you can think of (100+
|
||
|
# intents). This container also contains lexigram-cli to setup Kanzi with an
|
||
|
# Amazon Developer Account and automatically deploy it to Amazon.
|
||
|
|
||
|
source ./.env
|
||
|
docker run -d \
|
||
|
--name=kanzi \
|
||
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
||
|
-e PGID=${PGID:-100} `# for UserID` \
|
||
|
-e TZ=Europe/Amsterdam `# Specify a timezone to use for example Europe/Amsterdam` \
|
||
|
-e INVOCATION_NAME=kanzi `# Specify an invocation name for this skill, use either kanzi or kod.` \
|
||
|
-e URL_ENDPOINT=https://server.com/kanzi/ `# Specify the URL at which the webserver is reachable either `https://kanzi.server.com/` or `https://server.com/kanzi/` Note the trailing slash **MUST** be included.` \
|
||
|
-p 8000:8000 `# Application Port` \
|
||
|
-v ${BASEDIR:-/volume1/docker}/kanzi/config:/config `# Configuration files.` \
|
||
|
--restart unless-stopped \
|
||
|
ghcr.io/linuxserver/kanzi
|