added environment variables to the compose test file

This commit is contained in:
Kevin F 2021-10-14 18:15:50 +00:00
parent 982f3ee459
commit 0259dd1837
3 changed files with 11 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
dist
node_modules
.env

View File

@ -110,7 +110,7 @@ You are also requested to not remove attribution and donation information from f
Tests are done with Selenium (Helium Python package)
Simply run the tests with ./run-tests.sh and if no errors spit out and the exit code is 0, it passed.
Simply run the tests with ./run-tests.sh and if no errors spit out and the exit code is 0, it passed. Set environment variables for the tests in a .env file
## Support

View File

@ -2,6 +2,15 @@ services:
rimgu:
build: .
network_mode: host
environment:
- RIMGU_PORT
- RIMGU_HOST
- RIMGU_ADDRESS
- RIMGU_HTTP_PROXY
- RIMGU_HTTPS_PROXY
- RIMGU_IMGUR_CLIENT_ID
- RIMGU_USE_API="false"
- RIMGU_PAGE_TITLE
selenium:
depends_on:
- "rimgu"