Merge pull request #15 from cmer/add_args_to_run

Allow passing arguments to JacketConsole.exe. Resolves #10.
This commit is contained in:
sparklyballs 2016-12-13 20:31:50 +00:00 committed by GitHub
commit 52a5b5aba8
2 changed files with 2 additions and 1 deletions

View File

@ -42,6 +42,7 @@ http://192.168.x.x:8080 would show you what's running INSIDE the container on po
* `-p 9117` - the port(s)
* `-v /config` - where Jackett should store its config file.
* `-v /downloads` - Path to torrent blackhole
* `-e RUN_OPTS` - Optionally specify additional arguments to be passed. EG. `--ProxyConnection 10.0.0.100:1234`
* `-e PGID` for GroupID - see below for explanation
* `-e PUID` for UserID - see below for explanation
* `-e TZ` for timezone EG. Europe/London

View File

@ -1,4 +1,4 @@
#!/usr/bin/with-contenv bash
exec \
s6-setuidgid abc mono /app/Jackett/JackettConsole.exe
s6-setuidgid abc mono /app/Jackett/JackettConsole.exe "${RUN_OPTS}"