Go to file
ben 653c0fe205
ben/playonlinux-docker/pipeline/head This commit looks good Details
host badges locally
2022-09-19 17:10:06 +02:00
docs/img host badges locally 2022-09-19 17:10:06 +02:00
.gitignore Initial commit 2022-09-15 20:52:45 +00:00
Dockerfile rename variable to be consistent with other projects 2022-09-17 12:36:24 +02:00
Jenkinsfile a jenkinsfile to build 2022-09-16 10:35:18 +02:00
LICENSE Initial commit 2022-09-15 20:52:45 +00:00
README.md host badges locally 2022-09-19 17:10:06 +02:00
build.sh info in README, fixed up Dockerfile 2022-09-16 10:12:00 +02:00
push.sh a jenkinsfile to build 2022-09-16 10:35:18 +02:00
steam.sh info in README, fixed up Dockerfile 2022-09-16 10:12:00 +02:00

README.md

playonlinux-docker

Build Status git github Docker pulls Image size matrix

a docker container with PlayOnLinux, using Ubuntu 22.04 as the base image.

screenshot of PlayOnLinux running in Docker

usage

first create a directory for the PlayOnLinux data:

mkdir ~/playonlinux

pull and run the benediktkr/playonlinux image from dockerhub:

docker run --rm -it --privileged --device /dev/dri/card0:/dev/dri/card0  -e DISPLAY=:0  -v /tmp/.X11-unix:/tmp/.X11-unix:rw -v /dev/snd:/dev/snd:rw -v ~/playonlinux:/home/player:rw benediktkr/playonlinux:latest

if you want to run with a different UID and/or username, you can build the image.

3d hardware acceleration

hardware accelertion is possible, but you may have to install the correct drivers in the Dockerfile (pull requests welcome). the intel drivers are installed by default in the ubuntu image.

to pass your card to the container (as tested on an intel card):

--device /dev/dri/card0:/dev/dri/card0

modify as needed for other cards

build

to build with the default username player and UID 1000:

git clone https://git.sudo.is/ben/playonlinux-docker
docker build -t playonlinux .

if you need or want to use a different UID or username:

docker build --build-arg UID=1001 --build-arg USER_NAME=user -t playonlinux .

running the container

start PlayOnLinux:

docker run --rm -it --privileged \
  --device /dev/dri/card0:/dev/dri/card0 \
  -e DISPLAY=:0 \
  -v /tmp/.X11-unix:/tmp/.X11-unix:rw \
  -v /dev/snd:/dev/snd:rw \
  -v ~/playonlinux:/home/player:rw \
  playonlinux

starting Steam:

docker run --rm -it --privileged \
  --device /dev/dri/card0:/dev/dri/card0 \
  -e DISPLAY=:0 \
  -v /tmp/.X11-unix:/tmp/.X11-unix:rw \
  -v /dev/snd:/dev/snd:rw \
  -v ~/playonlinux:/home/player:rw \
  playonlinux --run Steam

the ENTRYPOINT of the container is the playonlinux binary, and any arguments you pass are passed to it.

these examples pass --rm to docker run to avoid leaving lingering stopped containers, so you should mount /home/player to a directory to keep your installs and game saves.

source

git repo: git.sudo.is/ben/playonlinux-docker

github: benediktkr/playonlinux-docker

docker hub: benediktkr/playonlinux