Skip to content

Commit

Permalink
Introduce partially release prefixes with 'docker-images-' (#51)
Browse files Browse the repository at this point in the history
and prepare next partially release 'docker-images-v0.1.0'

Signed-off-by: Andreas Heinrich <andreas.heinrich@rwth-aachen.de>
  • Loading branch information
andistorm authored Oct 11, 2024
1 parent 55b790e commit a3cd0df
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches:
- '**'
tags:
- 'v*'
- 'docker-images-v*'

env:
REGISTRY: ghcr.io
Expand Down
6 changes: 3 additions & 3 deletions devcontainer/template/.devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ volumes:

services:
mqtt-server:
image: ghcr.io/everest/everest-dev-environment/mosquitto:v0.7.0
image: ghcr.io/everest/everest-dev-environment/mosquitto:docker-images-v0.1.0
ports:
# allow multiple ports for host to avoid conflicts with other dev environments
- 1883-1983:1883
Expand All @@ -25,15 +25,15 @@ services:
MYSQL_USER: ocpp
MYSQL_PASSWORD: ocpp
steve:
image: ghcr.io/everest/everest-dev-environment/steve:v0.7.0
image: ghcr.io/everest/everest-dev-environment/steve:docker-images-v0.1.0
ports:
# allow multiple ports for host to avoid conflicts with other dev environments
- 8180-8280:8180
- 8443-8543:8443
depends_on:
- ocpp-db
mqtt-explorer:
image: ghcr.io/everest/everest-dev-environment/mqtt-explorer:v0.7.0
image: ghcr.io/everest/everest-dev-environment/mqtt-explorer:docker-images-v0.1.0
depends_on:
- mqtt-server
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN sudo apt update
RUN pip install --break-system-packages \
docker==7.1.0
# EVerest Development Tool
ARG DEV_ENV_TOOL_VERSION=v0.7.0
ARG DEV_ENV_TOOL_VERSION=docker-images-v0.1.0
RUN python3 -m pip install --break-system-packages \
git+https://github.com/EVerest/everest-dev-environment@${DEV_ENV_TOOL_VERSION}#subdirectory=everest_dev_tool

Expand Down

0 comments on commit a3cd0df

Please sign in to comment.