Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit a8e9627

Browse files
authored
Merge pull request #243 from jayaddison/maintenance/alpine-3.19.1-grocy-4.2.0
Maintenance: update container images to include Alpine v3.19.1 and Grocy v4.2.0
2 parents 6f6861d + e9f2838 commit a8e9627

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Containerfile-backend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG PLATFORM
22

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

66
ARG GROCY_VERSION

Containerfile-frontend

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ARG PLATFORM
22

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

66
ARG GROCY_VERSION

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: build run pod manifest manifest-create %-backend %-frontend
22

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

66
IMAGE_PREFIX ?= docker.io/grocy

docker-compose.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ version: '2.4'
33
services:
44

55
frontend:
6-
image: "grocy/frontend:v4.0.3"
6+
image: "grocy/frontend:v4.2.0"
77
build:
88
args:
9-
GROCY_VERSION: v4.0.3
9+
GROCY_VERSION: v4.2.0
1010
PLATFORM: linux/amd64
1111
context: .
1212
dockerfile: Containerfile-frontend
@@ -20,10 +20,10 @@ services:
2020
restart: unless-stopped
2121

2222
backend:
23-
image: "grocy/backend:v4.0.3"
23+
image: "grocy/backend:v4.2.0"
2424
build:
2525
args:
26-
GROCY_VERSION: v4.0.3
26+
GROCY_VERSION: v4.2.0
2727
PLATFORM: linux/amd64
2828
context: .
2929
dockerfile: Containerfile-backend

0 commit comments

Comments
 (0)