Add unleash service without database
This commit is contained in:
parent
2fc3dcce7e
commit
5a34fe4704
26
templates/compose/unleash-without-database.yaml
Normal file
26
templates/compose/unleash-without-database.yaml
Normal file
@ -0,0 +1,26 @@
|
||||
# documentation: https://docs.getunleash.io
|
||||
# slogan: Unleash: Open source feature flag management for enterprises
|
||||
# tags: unleash,feature flags,feature toggles,ab testing,open source
|
||||
# logo: svgs/unleash.svg
|
||||
# port: 4242
|
||||
|
||||
services:
|
||||
unleash:
|
||||
image: 'unleashorg/unleash-server:latest'
|
||||
environment:
|
||||
- SERVICE_FQDN_UNLEASH_4242
|
||||
- UNLEASH_URL=${SERVICE_FQDN_UNLEASH}
|
||||
- DATABASE_URL=${DATABASE_URL}
|
||||
- DATABASE_SSL=${DATABASE_SSL:-false}
|
||||
- LOG_LEVEL=warn
|
||||
- INIT_FRONTEND_API_TOKENS=default:default:development.unleash-insecure-frontend-api-token
|
||||
- INIT_CLIENT_API_TOKENS=default:development.unleash-insecure-api-token
|
||||
command:
|
||||
- node
|
||||
- index.js
|
||||
healthcheck:
|
||||
test: 'wget --no-verbose --tries=1 --spider http://localhost:4242/health || exit 1'
|
||||
interval: 1s
|
||||
timeout: 1m
|
||||
retries: 5
|
||||
start_period: 15s
|
Loading…
Reference in New Issue
Block a user