mirror of
https://github.com/ONLYOFFICE/Docker-DocumentServer.git
synced 2026-02-10 12:35:25 +08:00
10 lines
194 B
Docker
10 lines
194 B
Docker
FROM mcr.microsoft.com/mssql/server:2022-latest as onlyoffice-mssql
|
|
|
|
ENV ACCEPT_EULA=Y
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
COPY create_db_user.sh /tmp/create_db_user.sh
|
|
|
|
RUN bash /tmp/create_db_user.sh
|