Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epomatti/pyodbc-mssql-docker
An image for Python and pyodbc to connect to MS SQL Server
https://github.com/epomatti/pyodbc-mssql-docker
docker docker-image mssql pyodbc python sql-server
Last synced: 13 days ago
JSON representation
An image for Python and pyodbc to connect to MS SQL Server
- Host: GitHub
- URL: https://github.com/epomatti/pyodbc-mssql-docker
- Owner: epomatti
- License: mit
- Created: 2020-04-23T01:33:43.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-06-04T00:39:51.000Z (over 2 years ago)
- Last Synced: 2024-11-17T00:21:04.530Z (3 months ago)
- Topics: docker, docker-image, mssql, pyodbc, python, sql-server
- Language: Python
- Homepage: https://hub.docker.com/r/epomatti/pyodbc-mssql
- Size: 16.6 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker pyodbc + mssql
![Docker Image CI](https://github.com/epomatti/pyodbc-mssql-docker/actions/workflows/docker-image.yml/badge.svg)
An image with pyodbc for Microsoft SQL Server.
```sh
docker pull epomatti/pyodbc-mssql:latest
```### Testing
Small application for testing the image configuration:
```sh
cd ./test
cp config.dev.ini config.inidocker-compose build
docker-compose up
```### Docker Hub
Commands for manually publishing the image to Docker Hub:
```sh
export dockerHubImage='epomatti/pyodbc-mssql:latest'docker image build -t pyodbc-mssql:latest ./image
docker login --username=''
docker tag '' $dockerHubImage
docker push $dockerHubImage
```