17 lines
444 B
Bash
Executable File
17 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
podman run --rm \
|
|
--name 64gram \
|
|
--hostname 64gram \
|
|
-e DISPLAY \
|
|
--device /dev/snd:/dev/snd \
|
|
--device /dev/video0:/dev/video0 \
|
|
-v $HOME/.local/share/64Gram:/root/.local/share/64Gram \
|
|
-v $HOME/Downloads:/root/Downloads \
|
|
-v $HOME/Pictures:/root/Pictures \
|
|
-v $HOME/Documents:/root/Documents \
|
|
-v /usr/share/icons:/usr/share/icons \
|
|
-v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
git.shihaam.dev/dockerfiles/64gram
|
|
|