This runs the server component for Teradek's Bond video transmitters.
Here are some examples of how you could use this image. For more, see the makefile.
docker run -p 5111:5111 -p 1957:1957 -p 554:554 --detach --name sputnik \
texastribune/sputnik
You can do this two ways. You can just attach to the server:
docker attach --sig-proxy=false sputnik
Or you can mount the logs in a utility container:
docker run --rm -i -t --name debug --link sputnik:sputnik --volumes-from sputnik ubuntu
$ tail -f /var/log/sputnik*.log
Get the default Sputnik configuration. Skip this if you already have some config files.
# assuming you want it copied to ~/volumes/sputnik and it already exists
docker run --detach --name sputnik-tmp texastribune/sputnik
docker cp sputnik-tmp:data/conf ~/volumes/sputnik
docker rm -f sputnik-tmp
Run Sputnik using this configuration:
docker run -p 5111:5111 -p 1957:1957 -p 554:554 --detach --name sputnik \
-v ~/volumes/sputnik:/data texastribune/sputnik
Changes saved in the Sputnik admin will persist to your configs. You won't
need to edit them yourself under normal circumstances. NOTE: Depending
on how you run Sputnik, you should either edit ports in the config and use
--net=host, or avoid editing ports and configure ports using Docker's port
publishing.
Some suggested changes are: change admin and guest passwords, enable the
stream monitor, and change the upload folder to /data/upload.
Content type
Image
Digest
sha256:9ba7cfa0a…
Size
86.6 MB
Last updated
almost 11 years ago
docker pull texastribune/sputnik