Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fabiang/docker-liquibase
Liquibase with PostgreSQL, MySQL and SQLServer (+Liquibase Extension) support
https://github.com/fabiang/docker-liquibase
docker docker-amd64 docker-container docker-image dockerfile liquibase
Last synced: about 2 months ago
JSON representation
Liquibase with PostgreSQL, MySQL and SQLServer (+Liquibase Extension) support
- Host: GitHub
- URL: https://github.com/fabiang/docker-liquibase
- Owner: fabiang
- License: bsd-2-clause
- Created: 2018-08-14T11:18:41.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2022-11-30T12:34:33.000Z (about 2 years ago)
- Last Synced: 2023-03-11T05:34:29.152Z (almost 2 years ago)
- Topics: docker, docker-amd64, docker-container, docker-image, dockerfile, liquibase
- Language: Dockerfile
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker image for Liquibase [![CircleCI](https://circleci.com/gh/fabiang/docker-liquibase.svg?style=svg)](https://circleci.com/gh/fabiang/docker-liquibase)
This Docker image includes [Liquibase](https://www.liquibase.org) and supports the following DBMS:
- PostgreSQL
- Mysql
- MariaDB
- SQLServer
- SQLServer Extension for Liquibase[![fabiang/liquibase](http://dockeri.co/image/fabiang/liquibase)](https://registry.hub.docker.com/r/fabiang/liquibase)
## Usage
Example for SQL Server:
```
docker run --rm -it fabiang/liquibase liquibase \
--changeLogFile=somepath/db.changelog.xml \
--driver=com.microsoft.sqlserver.jdbc.SQLServerDriver \
--url="jdbc:sqlserver://mysqlserverinstance;databaseName=database;integratedSecurity=false;" \
update
```