Portainer Templates

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**

Pulls: 9k
Stars: 12
User: linuxserver
Created: Aug 07, 2023
Updated: 4 days ago
Status: active
Type Container Platform linux Image linuxserver/steamos:latest Ports

3000:3000/tcp3001:3001/tcp27031-27036:27031-27036/udp27031-27036:27031-2703647984-47990:47984-4799048010-48010:48010-4801047998-48000:47998-48000/udp

Volumes

/config : /volume1/docker/steamos/config /dev/input : /dev/input /run/udev/data : /run/udev/data

Restart Policy unless-stopped Env Vars

PUID=1024PGID=100TZ=Europe/AmsterdamDRINODE=/dev/dri/renderD128HOST_IP=192.168.100.10STARTUP=KDERESOLUTION=1920x1080

Installation

Via Portainer

  1. Ensure both Docker and Portainer are installed, and up-to-date
  2. Log into your Portainer web UI
  3. Under Settings → App Templates, paste the below URL
  4. Head to Home → App Templates, and the list of apps will show up
  5. 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 demo

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

Container Documentation