Fixing conflict & add mssql
This commit is contained in:
commit
bf19ecffcb
@ -176,6 +176,22 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
|
|
||||||
|
### MsSQL Container #########################################
|
||||||
|
|
||||||
|
mssql:
|
||||||
|
build:
|
||||||
|
context: ./mssql
|
||||||
|
environment:
|
||||||
|
- MSSQL_DATABASE=${MSSQL_DATABASE}
|
||||||
|
- SA_PASSWORD=${MSSQL_PASSWORD}
|
||||||
|
- ACCEPT_EULA=Y
|
||||||
|
volumes:
|
||||||
|
- mssql:/var/opt/mssql
|
||||||
|
ports:
|
||||||
|
- "${MSSQL_PORT}:1433"
|
||||||
|
networks:
|
||||||
|
- backend
|
||||||
|
|
||||||
### MariaDB Container #######################################
|
### MariaDB Container #######################################
|
||||||
|
|
||||||
mariadb:
|
mariadb:
|
||||||
|
21
mssql/Dockerfile
Normal file
21
mssql/Dockerfile
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
FROM microsoft/mssql-server-linux
|
||||||
|
|
||||||
|
# Create config directory
|
||||||
|
# an set it as WORKDIR
|
||||||
|
RUN mkdir -p /usr/src/app
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
|
# Bundle app source
|
||||||
|
COPY . /usr/src/app
|
||||||
|
|
||||||
|
RUN chmod +x /usr/src/app/create_table.sh
|
||||||
|
|
||||||
|
ENV MSSQL_DATABASE=$MSSQL_DATABASE
|
||||||
|
ENV ACCEPT_EULA=Y
|
||||||
|
ENV SA_PASSWORD=$MSSQL_PASSWORD
|
||||||
|
|
||||||
|
VOLUME /var/opt/mssql
|
||||||
|
|
||||||
|
EXPOSE 1433
|
||||||
|
|
||||||
|
CMD /bin/bash ./entrypoint.sh
|
5
mssql/create_table.sh
Normal file
5
mssql/create_table.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#wait for the SQL Server to come up
|
||||||
|
sleep 45s
|
||||||
|
|
||||||
|
#run the setup script to create the DB and the schema in the DB
|
||||||
|
/opt/mssql-tools/bin/sqlcmd -S localhost -U sa -P $SA_PASSWORD -d master -i setup.sql
|
2
mssql/entrypoint.sh
Normal file
2
mssql/entrypoint.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
#start SQL Server, start the script to create the DB and import the data, start the app
|
||||||
|
/opt/mssql/bin/sqlservr.sh & /usr/src/app/create_table.sh & tail -f /dev/null
|
4
mssql/setup.sql
Normal file
4
mssql/setup.sql
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
CREATE DATABASE $(MSSQL_DATABASE);
|
||||||
|
GO
|
||||||
|
USE $(MSSQL_DATABASE);
|
||||||
|
GO
|
Loading…
Reference in New Issue
Block a user