mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
35a5dd95bb
* Update backup-db.sh * Update entrypoint.sh * Update Dockerfile * Delete crontab * Update backup-db.sh * don't bother with log files all is already in /var/opt/mssql/log/errorlog * Use gosu
25 lines
655 B
Docker
25 lines
655 B
Docker
FROM mcr.microsoft.com/mssql/server:2017-CU14
|
|
|
|
LABEL com.bitwarden.product="bitwarden"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
gosu \
|
|
tzdata \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY backup-db.sql /
|
|
COPY backup-db.sh /
|
|
COPY entrypoint.sh /
|
|
|
|
RUN chmod +x /entrypoint.sh \
|
|
&& chmod +x /backup-db.sh
|
|
|
|
# Does not work unfortunately (https://github.com/bitwarden/server/issues/286)
|
|
RUN /opt/mssql/bin/mssql-conf set telemetry.customerfeedback false
|
|
|
|
HEALTHCHECK --timeout=3s CMD /opt/mssql-tools/bin/sqlcmd \
|
|
-S localhost -U sa -P ${SA_PASSWORD} -Q "SELECT 1" || exit 1
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|