Compare commits

...
Author SHA1 Message Date
Michel 61456d7e2c v2.0.0-beta.1 2023-11-06 23:02:16 +01:00
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
# Arguments # Arguments
ARG NODE_TAG=14.18.2 ARG NODE_TAG=16.13.1
ARG PYBRICKSCODE_TAG=v1.2.0-beta.1 ARG PYBRICKSCODE_TAG=v2.0.0-beta.1
# Build stage # Build stage
FROM node:${NODE_TAG} AS build-stage FROM node:${NODE_TAG} AS build-stage
+2 -2
View File
@@ -6,8 +6,8 @@ services:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
args: args:
NODE_TAG: ${NODE_TAG:-14.18.2} NODE_TAG: ${NODE_TAG:-16.13.1}
PYBRICKSCODE_TAG: ${PYBRICKSCODE_TAG:-v1.2.0-beta.1} PYBRICKSCODE_TAG: ${PYBRICKSCODE_TAG:-v2.0.0-beta.1}
restart: ${RESTART:-unless-stopped} restart: ${RESTART:-unless-stopped}
healthcheck: healthcheck:
test: curl -f http://localhost:80/ || exit 1 test: curl -f http://localhost:80/ || exit 1
+1 -1
View File
@@ -2,7 +2,7 @@ services:
# Pybricks Code # Pybricks Code
pybrickscode: pybrickscode:
container_name: ${PYBRICKSCODE_CONTAINER_NAME:-PybricksCode} container_name: ${PYBRICKSCODE_CONTAINER_NAME:-PybricksCode}
image: axchrono/pybrickscode:${PYBRICKSCODE_TAG:-v1.2.0-beta.1} image: axchrono/pybrickscode:${PYBRICKSCODE_TAG:-v2.0.0-beta.1}
restart: ${RESTART:-unless-stopped} restart: ${RESTART:-unless-stopped}
healthcheck: healthcheck:
test: curl -f http://localhost:80/ || exit 1 test: curl -f http://localhost:80/ || exit 1