add default values
This commit is contained in:
parent
9ba41de06d
commit
970f4f40de
1 changed files with 3 additions and 3 deletions
|
@ -4,9 +4,9 @@ forumbot docker_container.running:
|
||||||
- image: {{ salt['pillar.get']('postgres:image:path', 'docker.io/flipdot/forumbot') }}:{{ salt['pillar.get']('postgres:image:version', 'latest') }}
|
- image: {{ salt['pillar.get']('postgres:image:path', 'docker.io/flipdot/forumbot') }}:{{ salt['pillar.get']('postgres:image:version', 'latest') }}
|
||||||
- container_name: forumbot
|
- container_name: forumbot
|
||||||
- environment:
|
- environment:
|
||||||
- DISCOURSE_API_KEY: {{ salt['pillar.get']('forumbot:discourse_api_key') }}
|
- DISCOURSE_API_KEY: {{ salt['pillar.get']('forumbot:discourse_api_key', "") }}
|
||||||
- DISCOURSE_USERNAME: {{ salt['pillar.get']('forumbot:discourse_username') }}
|
- DISCOURSE_USERNAME: {{ salt['pillar.get']('forumbot:discourse_username', "") }}
|
||||||
- SENTRY_DSN: {{ salt['pillar.get']('forumbot:sentry_dsn') }}
|
- SENTRY_DSN: {{ salt['pillar.get']('forumbot:sentry_dsn', "") }}
|
||||||
- restart: always
|
- restart: always
|
||||||
- healthcheck:
|
- healthcheck:
|
||||||
test: ["CMD", "python", "/app/src/app.py", "--test_connection"]
|
test: ["CMD", "python", "/app/src/app.py", "--test_connection"]
|
||||||
|
|
Loading…
Reference in a new issue