From 792d2859b3e150b4af6d74c8b1a0ecb088eb3f5f Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Thu, 23 Feb 2023 19:33:08 +0100 Subject: [PATCH] mention how to run several scripts in docker via `bash -c`, #73 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3cbd219..5f88f56 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Easy option: [install Docker](https://docs.docker.com/get-docker/) (or [podman]( ``` docker run --rm -it -p 6080:6080 -v fgc:/fgc/data --pull=always ghcr.io/vogler/free-games-claimer ``` -This 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. +This 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, or if you want several `bash -c "node epic-games.js; node gog.js"`. Data (including json files with claimed games, codes to redeem, screenshots) is stored in the Docker volume `fgc`.