Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions dockerfile/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
FROM errbit/errbit:latest
FROM errbit/errbit:v0.8.0

LABEL \
maintainer="Tobias L. Maier <[email protected]>" \
org.label-schema.schema-version="1.0" \
org.label-schema.name="Errbit with Entrypoint script" \
org.label-schema.vcs-url="https://github.com/tmaier/errbit-helm"

USER root

COPY docker-entrypoint.sh /usr/local/bin/

USER errbit

CMD ["puma","-C","config/puma.default.rb"]
ENTRYPOINT ["docker-entrypoint.sh"]
2 changes: 1 addition & 1 deletion templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ data:
{{ $key | upper }}: {{ $value | b64enc | quote }}
{{- end }}
{{- if not .Values.mongodb.enabled }}
MONGODB_PASSWORD: {{- .Values.mongodbPassword | default "" | b64enc | quote -}}
MONGODB_PASSWORD: {{ .Values.mongodbPassword | default "" | b64enc | quote -}}
{{- end }}