aboutsummaryrefslogtreecommitdiff
path: root/demo/docker-compose.yml
blob: da8c2b94f199d27586d6131686c3b20c3623d1ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
version: '3'

services:

  server:
    image: steam-export:latest
    build:
      dockerfile: demo/Dockerfile
      context: ..
    volumes:
      - /home/mitch/.steam/steam/steamapps:/steam-lib
    environment:
      - USER_UID=1000
      - USER_GID=1000
      - TRUSTED_CIDRS=127.0.0.1/32
      - SHARE_LINK=http://server:8899/

  client:
    image: steam-export:latest
    build:
      dockerfile: demo/Dockerfile
      context: ..
    volumes:
      # - /home/mitch/.steam/steam/steamapps:/steam-lib
      - ./client-lib:/steam-lib
    environment:
      - USER_UID=1000
      - USER_GID=1000
      - TRUSTED_CIDRS=10.0.0.0/8,192.168.0.0/16,172.16.0.0/12,127.0.0.1/8
      - SHARE_LINK=http://client:8899/