fix: align container image naming convention

Use ghcr.io/host-uk/core-images:{tag} format where tag is the
image variant (developer, server-php) rather than path-based naming.

See: https://github.com/host-uk/core-images/issues/1

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Snider 2026-01-31 23:10:44 +00:00
parent 63079ed187
commit 438ad7bd65
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "Core Developer", "name": "Core Developer",
"image": "ghcr.io/host-uk/core-images/developer:latest", "image": "ghcr.io/host-uk/core-images:developer",
"workspaceMount": "source=${localWorkspaceFolder}/packages,target=/workspace,type=bind", "workspaceMount": "source=${localWorkspaceFolder}/packages,target=/workspace,type=bind",
"workspaceFolder": "/workspace", "workspaceFolder": "/workspace",

View file

@ -3,7 +3,7 @@
services: services:
dev: dev:
image: ghcr.io/host-uk/core-images/developer:latest image: ghcr.io/host-uk/core-images:developer
container_name: core-dev container_name: core-dev
hostname: core-dev hostname: core-dev
stdin_open: true stdin_open: true