Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce partially release prefixed with 'docker-images-' #51

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading