Skip to content

Commit

Permalink
Update to grocy v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jayaddison committed Jul 29, 2023
1 parent f59e945 commit b3daf34
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Containerfile-frontend
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN set -o pipefail && \
rm -rf ${GNUPGHOME}

# Install application dependencies
RUN yarn install --frozen-lockfile --modules-folder /var/www/public/node_modules --production && \
RUN yarn install --frozen-lockfile --modules-folder /var/www/public/packages --production && \
yarn cache clean

# Remove build-time dependencies (privileged)
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 = v3.3.2
GROCY_VERSION = v4.0.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:v3.3.2"
image: "grocy/frontend:v4.0.0"
build:
args:
GROCY_VERSION: v3.3.2
GROCY_VERSION: v4.0.0
PLATFORM: linux/amd64
context: .
dockerfile: Containerfile-frontend
Expand All @@ -20,10 +20,10 @@ services:
restart: unless-stopped

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

0 comments on commit b3daf34

Please sign in to comment.