Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

docker support added #271

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
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
12 changes: 12 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,18 @@ For general help content, pass in the ``-h`` parameter:

$ mssql-scripter -h


Docker
-----

docker pull felipegouveiae/mssql-scripter:latest
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfortunately, we can't have an external dockerfile like this in our docs. So please remove this - and then I'll see about getting the below dockerfile published under the Microsoft account.

docker run -it -v $(pwd):/var/data felipegouveiae/mssql-scripter:latest mssql-scripter [PARAMS]

or

cd ./docker
docker build .

Contributing
-----------------------------
If you would like to contribute to the project, please refer to the `development guide`_.
Expand Down
7 changes: 7 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM python:3

RUN \
pip install --upgrade pip

RUN \
pip install -q mssql-scripter