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
- Host: GitHub
- URL: https://github.com/ci-space/goose-postgres
- Owner: ci-space
- License: mit
- Created: 2025-05-11T21:18:48.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-09-16T23:19:38.000Z (9 months ago)
- Last Synced: 2025-10-01T22:26:09.952Z (9 months ago)
- Topics: docker-image, goose, migration-tool, postgres
- Language: Makefile
- Homepage:
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goose-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
```