Created
August 30, 2018 15:31
-
-
Save levlaz/c6d2693cc73fcab737da981964056edd to your computer and use it in GitHub Desktop.
LD Relay Daemon Mode example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
redis: | |
image: redis | |
ports: | |
- "6379:6379" | |
relay: | |
image: launchdarkly/ld-relay | |
depends_on: | |
- redis | |
environment: | |
- USE_REDIS=1 | |
- REDIS_HOST=redis | |
- REDIS_PORT=6379 | |
- REDIS_TTL=30000 | |
- LD_ENV_prod=$LD_SDK_KEY | |
- LD_PREFIX_prod=ld:levlaz-demo-project:production |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment