diff --git a/Dockerfile b/Dockerfile index 76d70af..623d6a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3 MAINTAINER kukymbr LABEL description="goose migrations in docker" -ENV GOOSE_VERSION_TAG="v3.19.1" +ENV GOOSE_VERSION_TAG="v3.19.2" RUN apk update && \ apk upgrade && \ diff --git a/README.md b/README.md index 7578349..0619d5f 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ For example, pure docker call: docker run --rm -v ./migrations:/migrations --network host \ -e GOOSE_DRIVER="postgres" \ -e GOOSE_DBSTRING="host=localhost port=5432 user=postgres password=postgres dbname=postgres" \ - ghcr.io/kukymbr/goose-docker:3.19.1 + ghcr.io/kukymbr/goose-docker:3.19.2 ``` Example with `up-to` command: @@ -59,7 +59,7 @@ docker run --rm -v ./migrations:/migrations --network host \ -e GOOSE_COMMAND_ARG="20230607203836" \ -e GOOSE_DRIVER="postgres" \ -e GOOSE_DBSTRING="host=localhost port=5432 user=postgres password=postgres dbname=postgres" \ - ghcr.io/kukymbr/goose-docker:3.19.1 + ghcr.io/kukymbr/goose-docker:3.19.2 ``` ### docker compose @@ -71,7 +71,7 @@ services: # ... Add your DB service migrations: - image: ghcr.io/kukymbr/goose-docker:3.19.1 + image: ghcr.io/kukymbr/goose-docker:3.19.2 environment: - GOOSE_DRIVER=postgres - GOOSE_DBSTRING=host=postgres port=5432 user=postgres password=postgres dbname=postgres diff --git a/compose.yml b/compose.yml index 6fcada8..f051db6 100644 --- a/compose.yml +++ b/compose.yml @@ -14,7 +14,7 @@ services: retries: 5 migrations: - image: ghcr.io/kukymbr/goose-docker:3.19.1 + image: ghcr.io/kukymbr/goose-docker:3.19.2 restart: no env_file: - .env diff --git a/readme.dockerhub.md b/readme.dockerhub.md index a6b1b14..297e52e 100644 --- a/readme.dockerhub.md +++ b/readme.dockerhub.md @@ -56,7 +56,7 @@ For example, pure docker call: docker run --rm -v ./migrations:/migrations --network host \ -e GOOSE_DRIVER="postgres" \ -e GOOSE_DBSTRING="host=localhost port=5432 user=postgres password=postgres dbname=postgres" \ - kukymbr/goose-docker:3.19.1 + kukymbr/goose-docker:3.19.2 ``` Example with `up-to` command: @@ -67,7 +67,7 @@ docker run --rm -v ./migrations:/migrations --network host \ -e GOOSE_COMMAND_ARG="20230607203836" \ -e GOOSE_DRIVER="postgres" \ -e GOOSE_DBSTRING="host=localhost port=5432 user=postgres password=postgres dbname=postgres" \ - kukymbr/goose-docker:3.19.1 + kukymbr/goose-docker:3.19.2 ``` ### docker compose @@ -79,7 +79,7 @@ services: # ... Add your DB service migrations: - image: kukymbr/goose-docker:3.19.1 + image: kukymbr/goose-docker:3.19.2 environment: - GOOSE_DRIVER=postgres - GOOSE_DBSTRING=host=postgres port=5432 user=postgres password=postgres dbname=postgres