Skip to content

Commit

Permalink
Merge pull request #243 from jayaddison/maintenance/alpine-3.19.1-gro…
Browse files Browse the repository at this point in the history
…cy-4.2.0

Maintenance: update container images to include Alpine v3.19.1 and Grocy v4.2.0
  • Loading branch information
berrnd authored Apr 19, 2024
2 parents 6f6861d + e9f2838 commit a8e9627
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Containerfile-backend
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG PLATFORM

FROM --platform=${PLATFORM} docker.io/alpine:3.19.0
FROM --platform=${PLATFORM} docker.io/alpine:3.19.1
LABEL maintainer "Talmai Oliveira <[email protected]>, James Addison <[email protected]>"

ARG GROCY_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Containerfile-frontend
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG PLATFORM

FROM --platform=${PLATFORM} docker.io/alpine:3.19.0
FROM --platform=${PLATFORM} docker.io/alpine:3.19.1
LABEL maintainer "Talmai Oliveira <[email protected]>, James Addison <[email protected]>"

ARG GROCY_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: build run pod manifest manifest-create %-backend %-frontend

GROCY_VERSION = v4.0.3
GROCY_VERSION = v4.2.0
IMAGE_TAG ?= $(shell git describe --tags --match 'v*' --dirty)

IMAGE_PREFIX ?= docker.io/grocy
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ version: '2.4'
services:

frontend:
image: "grocy/frontend:v4.0.3"
image: "grocy/frontend:v4.2.0"
build:
args:
GROCY_VERSION: v4.0.3
GROCY_VERSION: v4.2.0
PLATFORM: linux/amd64
context: .
dockerfile: Containerfile-frontend
Expand All @@ -20,10 +20,10 @@ services:
restart: unless-stopped

backend:
image: "grocy/backend:v4.0.3"
image: "grocy/backend:v4.2.0"
build:
args:
GROCY_VERSION: v4.0.3
GROCY_VERSION: v4.2.0
PLATFORM: linux/amd64
context: .
dockerfile: Containerfile-backend
Expand Down

0 comments on commit a8e9627

Please sign in to comment.