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

https://github.com/ci-space/goose-postgres

Lightweight image for Goose with PostgreSQL
https://github.com/ci-space/goose-postgres

docker-image goose migration-tool postgres

Last synced: about 1 month ago
JSON representation

Lightweight image for Goose with PostgreSQL

Awesome Lists containing this project

README

          

# goose-postgres

![Docker Image Version](https://img.shields.io/docker/v/cispace/goose-postgres?style=for-the-badge&logo=docker&label=Image%20Version&link=https%3A%2F%2Fhub.docker.com%2Fr%2Fcispace%2Fgoose-postgres)
![Docker Image Size](https://img.shields.io/docker/image-size/cispace/goose-postgres?style=for-the-badge&logo=docker&label=Image%20Size&link=https%3A%2F%2Fhub.docker.com%2Fr%2Fcispace%2Fgoose-postgres)

**goose-postgres** - is lightweight Docker image for [goose](https://github.com/pressly/goose?tab=readme-ov-file) with PostgreSQL

Usage with Docker Compose
```yaml
services:
migrations:
image: cispace/goose-postgres
volumes:
- ./migrations:/migrations
environment:
GOOSE_DBSTRING: "host=postgres user=root password=root dbname=users sslmode=disable"
command: up
```