Podium is a blazing-fast player ranking service.
1M+
This container allows you to run Podium without worrying about what services are up. We assume you are setting the following environment variables:
PODIUM_REDIS_HOST - Redis host to connect to;PODIUM_REDIS_PORT - Redis port to connect to;PODIUM_REDIS_PASSWORD - Password of the Redis Server to connect to;PODIUM_REDIS_DB - DB Number of the Redis Server to connect to;PODIUM_SENTRY_URL - Sentry URL to send errors to;BASICAUTH_USERNAME - If this parameter is defined, Podium runs behind basic authentication with the user and password defined in env vars;BASICAUTH_PASSWORD - If this parameter is defined, Podium runs behind basic authentication with the user and password defined in env vars.Example command:
docker run -i -t --rm \
-e PODIUM_REDIS_HOST=$(REDISIP) \
-e PODIUM_REDIS_PORT=$(REDISPORT) \
-e PODIUM_REDIS_PASSWORD=$(REDISPASS) \
-e PODIUM_REDIS_DB=$(REDISDB) \
-e PODIUM_SENTRY_URL=$(SENTRYURL) -p 8080:8080 tfgco/podium
With Basic Auth:
docker run -i -t --rm \
-e PODIUM_REDIS_HOST=$(REDISIP) \
-e PODIUM_REDIS_PORT=$(REDISPORT) \
-e PODIUM_REDIS_PASSWORD=$(REDISPASS) \
-e PODIUM_REDIS_DB=$(REDISDB) \
-e PODIUM_SENTRY_URL=$(SENTRYURL) \
-e BASICAUTH_USERNAME=admin \
-e BASICAUTH_PASSWORD=admin -p 8080:8080 tfgco/podium
Content type
Image
Digest
sha256:7cabd26de…
Size
15.5 MB
Last updated
almost 3 years ago
docker pull tfgco/podium