From 88b4dcfcac86d29da3dc5e7df908d33c3c7fea83 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Sat, 28 Jan 2023 13:14:42 +0100 Subject: [PATCH] also run `node gog` by default, closes #52 --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6df9858..95b4d0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,4 +63,4 @@ ENV SHOW 1 # Script to setup display server & VNC is always executed. ENTRYPOINT ["docker-entrypoint.sh"] # Default command to run. This is replaced by appending own command, e.g. `docker run ... node prime-gaming` to only run this script. -CMD node epic-games; node prime-gaming +CMD node epic-games; node prime-gaming; node gog diff --git a/README.md b/README.md index 706d4e1..8a38086 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ Raspberry Pi (3, 4, Zero 2): Raspbian won't work since it's 32-bit, but Raspberr ``` docker run --rm -it -p 6080:6080 -v fgc:/fgc/data ghcr.io/vogler/free-games-claimer ``` -which will run `node epic-games; node prime-gaming`. If you only want to claim games for one store, you can override the default by appending e.g. `node epic-games` at the end of the `docker run` command. -Data is stored in the volume `fgc`. +which will run `node epic-games; node prime-gaming; node gog`. If you only want to claim games for one of the stores, you can override the default command by appending e.g. `node epic-games` at the end of the `docker run` command. +Data (including json files with claimed games, codes to redeem, screenshots) is stored in the Docker volume `fgc`.
I want to run without Docker or develop locally.