mirror of
https://github.com/dswd/vpncloud.git
synced 2025-01-06 20:37:50 +00:00
12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd $(dirname $0)
|
|
|
|
docker build -t asciinema-recorder .
|
|
docker run -it --rm --network host \
|
|
-v $(pwd):/data \
|
|
-v /etc/hosts:/etc/hosts \
|
|
asciinema-recorder
|