Skip to content

Zibbp/gogrepo-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 

Repository files navigation

gogrepo-docker

Docker container for gogrepo

Usage

docker run -it --rm -v /path/to/your/storage/gogrepo:/srv zibbp/gogrepo-docker:latest command

Use a bash script to run all commands at once

#!/bin/bash
#echo "updating games"
#/gorepo/gorepo.py update -os windows linux -lang en
echo "updating known games"
/gogrepo/gogrepo.py update -os windows linux -lang en -skipknown
echo "updating games with 'updated' tag"
/gogrepo/gogrepo.py update -os windows linux -lang en -updateonly
echo "downloading games"
/gogrepo/gogrepo.py download
#echo "validating games"
#/gogrepo/gogrepo.py verify
version: '3.3'
services:
  gogrepo:
    container_name: gogrepo
    image: ghcr.io/zibbp/gogrepo-docker:main
    volumes:
      - /path/to/games:/srv
      - /path/to/run.sh:/tmp/run.sh
    entrypoint: ["/bin/bash", "/tmp/run.sh"]

About

Docker container for gogrepo

Resources

Stars

Watchers

Forks

Releases

No releases published