Steamos
[SteamOS](https://www.steamdeck.com/) is an Arch based Linux distribution made by Valve Software. This container is a vanilla Arch install with Steam repositories added for software support. **This container will only work with modern AMD/Intel GPUs on a real Linux Host**
linux
Image
linuxserver/steamos:latest
Ports
3000:3000/tcp
3001:3001/tcp
27031-27036:27031-27036/udp
27031-27036:27031-27036
47984-47990:47984-47990
48010-48010:48010-48010
47998-48000:47998-48000/udp
/config : /volume1/docker/steamos/config
/dev/input : /dev/input
/run/udev/data : /run/udev/data
unless-stopped
Env Vars
PUID=1024
PGID=100
TZ=Europe/Amsterdam
DRINODE=/dev/dri/renderD128
HOST_IP=192.168.100.10
STARTUP=KDE
RESOLUTION=1920x1080
Installation
Via Portainer
- Ensure both Docker and Portainer are installed, and up-to-date
- Log into your Portainer web UI
- Under Settings → App Templates, paste the below URL
- Head to Home → App Templates, and the list of apps will show up
- Select the app you wish to deploy, fill in any config options, and hit Deploy
Template Import URL
https://raw.githubusercontent.com/Lissy93/portainer-templates/main/templates.json
Show Me
Via Docker Run
docker run -d \
-p 3000:3000/tcp \
-p 3001:3001/tcp \
-p 27031-27036:27031-27036/udp \
-p 27031-27036:27031-27036 \
-p 47984-47990:47984-47990 \
-p 48010-48010:48010-48010 \
-p 47998-48000:47998-48000/udp \
-e PUID=${PUID} \
-e PGID=${PGID} \
-e TZ=${TZ} \
-e DRINODE=${DRINODE} \
-e HOST_IP=${HOST_IP} \
-e STARTUP=${STARTUP} \
-e RESOLUTION=${RESOLUTION} \
-v /volume1/docker/steamos/config:/config \
-v /dev/input:/dev/input \
-v /run/udev/data:/run/udev/data \
--restart=unless-stopped \
linuxserver/steamos:latest
Via Docker Compose
Save this file as docker-compose.yml
and run docker-compose up -d
Use this only as a guide.
version: '3.8'
services:
steamos:
image: linuxserver/steamos:latest
ports:
- 3000:3000:tcp
- 3001:3001:tcp
- 27031-27036:27031-27036:udp
- 27031-27036:27031-27036
- 47984-47990:47984-47990
- 48010-48010:48010-48010
- 47998-48000:47998-48000:udp
environment:
PUID: ''
PGID: ''
TZ: ''
DRINODE: ''
HOST_IP: ''
STARTUP: ''
RESOLUTION: ''
volumes:
- /volume1/docker/steamos/config:/config
- /dev/input:/dev/input
- /run/udev/data:/run/udev/data
Alternative Methods
For more installation options, see the Documentation in the GitHub repo