Skip to content

Commit

Permalink
release update 8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo-ochoa committed Sep 23, 2024
1 parent 48acd6a commit bfcef44
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: mochoa/pgadmin4-docker-extension:8.11.0
tags: mochoa/pgadmin4-docker-extension:8.12.0
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## v8.12.0

- Upgrade to latest [PGAdmin4](https://www.pgadmin.org/docs/pgadmin4/8.12/release_notes_8_12.html) version

## v8.11.0

- Upgrade to latest [PGAdmin4](https://www.pgadmin.org/docs/pgadmin4/8.11/release_notes_8_11.html) version
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN --mount=type=cache,target=/go/pkg/mod \
--mount=type=cache,target=/root/.cache/go-build \
go build -trimpath -ldflags="-s -w" -o bin/service

FROM alpine:3.15
FROM alpine:3.20

LABEL org.opencontainers.image.title="Open Source management tool for PostgreSQL"
LABEL org.opencontainers.image.description="Docker Extension for using an embedded PGAdmin4 Open Source management tool for PostgreSQL."
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: clean extension install

ORG=mochoa
VERSION=8.11
VERSION=8.12
MINOR=0
IMAGE_NAME=$(ORG)/pgadmin4-docker-extension
TAGGED_IMAGE_NAME=$(IMAGE_NAME):$(VERSION).${MINOR}
Expand All @@ -13,7 +13,7 @@ clean:
extension:
docker buildx build --load -t $(TAGGED_IMAGE_NAME) .

install:
install: extension
docker extension install -f $(TAGGED_IMAGE_NAME)

validate: extension
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ Since Docker Desktop [v4.11.0](https://docs.docker.com/desktop/release-notes/#do
If you are using Docker Desktop [v4.10.1](https://docs.docker.com/desktop/release-notes/#docker-desktop-4101) or less you can install just by executing:

```bash
$ docker extension install mochoa/pgadmin4-docker-extension:8.11.0
$ docker extension install mochoa/pgadmin4-docker-extension:8.12.0
Extensions can install binaries, invoke commands and access files on your machine.
Are you sure you want to continue? [y/N] y
Image not available locally, pulling mochoa/pgadmin4-docker-extension:8.11.0...
Installing new extension "mochoa/pgadmin4-docker-extension:8.11.0"
Image not available locally, pulling mochoa/pgadmin4-docker-extension:8.12.0...
Installing new extension "mochoa/pgadmin4-docker-extension:8.12.0"
Installing service in Desktop VM...
Setting additional compose attributes
VM service started
Expand Down Expand Up @@ -62,7 +62,7 @@ by choosing Save Password, the above password is stored at PGAdmin4 internal sto
To uninstall the extension just execute:

```bash
$ docker extension uninstall mochoa/pgadmin4-docker-extension:8.11.0
$ docker extension uninstall mochoa/pgadmin4-docker-extension:8.12.0
Extension "PGAdmin4" uninstalled successfully
```

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
pgadmin4-docker-extension:
image: ${DESKTOP_PLUGIN_IMAGE}
pgadmin:
image: dpage/pgadmin4:8.11
image: dpage/pgadmin4:8.12
container_name: pgadmin4_embedded_dd_vm
restart: unless-stopped
volumes:
Expand Down

0 comments on commit bfcef44

Please sign in to comment.