Added ownfoil config
This commit is contained in:
parent
82247acd4f
commit
7b9b2c076d
|
|
@ -18,6 +18,9 @@ GITEA_RUNNER_TOKEN=0123456789abcdef0123456789abcdef01234567
|
|||
GITEA_RUNNER_UID=1000
|
||||
GITEA_RUNNER_GID=1000
|
||||
|
||||
OWNFOIL_USER=user
|
||||
OWNFOIL_PASS=password
|
||||
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
TZ="Europe/Zurich"
|
||||
17
ownfoil/docker-compose.yml
Normal file
17
ownfoil/docker-compose.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
services:
|
||||
ownfoil:
|
||||
image: a1ex4/ownfoil
|
||||
container_name: ownfoil
|
||||
environment:
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
# Uncomment to setup basic auth
|
||||
USERNAME: $OWNFOIL_USER
|
||||
PASSWORD: $OWNFOIL_PASS
|
||||
# - ROOT_DIR=/games
|
||||
# - SAVE_ENABLED=true
|
||||
volumes:
|
||||
- $MEDIADIR/games/switch:/games
|
||||
ports:
|
||||
- "8001:80"
|
||||
restart: unless-stopped
|
||||
Loading…
Reference in a new issue