mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01:00
29 lines
849 B
Docker
29 lines
849 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 \
|
|
cron \
|
|
gosu \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY crontab /etc/cron.d/bitwarden-cron
|
|
RUN chmod 0644 /etc/cron.d/bitwarden-cron
|
|
COPY backup-db.sql /
|
|
COPY backup-db.sh /
|
|
COPY entrypoint.sh /
|
|
|
|
RUN chmod +x /entrypoint.sh \
|
|
&& chmod +x /backup-db.sh
|
|
|
|
RUN /opt/mssql/bin/mssql-conf set telemetry.customerfeedback false
|
|
# As the setting above does not work, let's use the workaround below
|
|
RUN echo 127.0.0.1 settings-win.data.microsoft.com >> /etc/hosts
|
|
RUN echo 127.0.0.1 vortex.data.microsoft.com >> /etc/hosts
|
|
|
|
HEALTHCHECK --timeout=3s CMD /opt/mssql-tools/bin/sqlcmd \
|
|
-S localhost -U sa -P ${SA_PASSWORD} -Q "SELECT 1" || exit 1
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|