From 75143edddfd1af42a9de64fc84c4f87db3063a25 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Wed, 12 Apr 2017 13:01:56 +0200 Subject: [PATCH] Add doc about recording from Docker image --- app/views/docs/installation.html.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/app/views/docs/installation.html.md b/app/views/docs/installation.html.md index 355f365..1f71bf4 100644 --- a/app/views/docs/installation.html.md +++ b/app/views/docs/installation.html.md @@ -9,6 +9,18 @@ be installed with pip (Python 3 required): sudo pip3 install asciinema +## Docker image + +asciinema Docker image is based on Ubuntu 16.04 and has the latest version of +asciinema recorder pre-installed. + + docker pull asciinema/asciinema + +When running it don't forget to allocate a pseudo-TTY (`-t`), keep STDIN open +(`-i`) and mount config directory volume (`-v`): + + docker run --rm -ti -v "$HOME/.config/asciinema":/root/.config/asciinema asciinema/asciinema + ## Native packages ### Arch Linux