mirror of
https://github.com/iperov/DeepFaceLive
synced 2025-07-07 05:22:08 -07:00
5 lines
271 B
Bash
Executable file
5 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
# Warning xhost + is overly permissive and will reduce system security. Edit as desired
|
|
docker build . -t deepfacelive
|
|
xhost +
|
|
docker run --ipc host --gpus all -e DISPLAY=$DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix -v $(pwd)/data/:/data/ --rm -it deepfacelive
|