first commit

This commit is contained in:
2024-05-17 15:59:57 -07:00
commit 8ab6af0825
6 changed files with 176 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
export DOCKER_HOST := ssh://root@las1
build:
docker build \
-t sneak/vnc-desktop \
--progress plain \
.
run:
docker rm -f vnc-desktop
docker run \
-d -p 5901:5901 \
--name vnc-desktop \
--security-opt seccomp=unconfined \
sneak/vnc-desktop
logs:
docker logs -f vnc-desktop