Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.ini

docker-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
```