xteve
export PUID=99
export PGID=100
docker run \
-v /path/to/config:/config \
-v /tmp/xteve:/tmp/xteve \
-p 34400:34400 \
-u ${PUID}:${PGID}
tnwhitwell/xteve:latest
version: '3'
services:
xteve:
image: tnwhitwell/xteve:latest
ports:
- "34400:34400"
volumes:
- "/path/to/config:/config"
- "/tmp/xteve:/tmp/xteve"
user: "${PUID}:${PGID}"
By default, the process runs as user root:root. It is recommended to change this using the -u UID:GID option in the docker run command, or with user: UID:GID in a docker-compose file.
The timezone of the container can be changed by setting an env var TZ with the timezone name eg. -e TZ=Europe/Paris.
Documentation for xteve itself can be found on its github page. ffmpeg and cvlc are available within the docker image, so they can be used as buffers.
Content type
Image
Digest
Size
73.5 MB
Last updated
over 5 years ago
docker pull tnwhitwell/xteve:latest-curl