1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/vnc2flv
2016-11-15 08:41:05 +08:00
..
docker-compose.yml add vnc2flv 2016-11-15 08:41:05 +08:00
Dockerfile add vnc2flv 2016-11-15 08:41:05 +08:00
README.md add vnc2flv 2016-11-15 08:41:05 +08:00

vnc2flv

Vnc2flv is a cross-platform screen recording tool for UNIX, Windows or Mac. It captures a VNC desktop session (either your own screen or a remote computer) and saves as a Flash Video (FLV) file.

This docker image works very well with selenium/standalone-firefox-debug.

docker-compose.yml

vnc2flv:
  image: vimagick/vnc2flv
  command: -P /pwdfile -o record.flv localhost 5900
  volumes:
    - ./pwdfile:/pwdfile
    - ./data:/data
  net: host

Up and Running

# Create passwd file
echo secret > pwdfile

# Start recording
docker-compose up -d

# Stop recording
docker-compose kill -s INT