ci: version 13 - fix docker package name for debian
This commit is contained in:
@@ -1,24 +1,25 @@
|
|||||||
name: Deploy-Agent-V12-InstallDocker
|
name: Deploy-Agent-V13-FixDockerPkg
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
JOB-V12-DOCKER-CLI:
|
JOB-V13-DOCKER-CLI:
|
||||||
runs-on: debian-latest
|
runs-on: debian-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Install Docker CLI
|
- name: Install Docker CLI
|
||||||
run: |
|
run: |
|
||||||
echo "Installing Docker CLI..."
|
echo "Installing Docker CLI..."
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y docker.io docker-compose-v2
|
# Use docker-compose instead of docker-compose-v2 for standard Debian
|
||||||
|
apt-get install -y docker.io docker-compose
|
||||||
|
|
||||||
- name: Deploy via Host Docker Socket
|
- name: Deploy via Host Docker Socket
|
||||||
run: |
|
run: |
|
||||||
echo "Sending build command to host Docker daemon..."
|
echo "Sending build command to host Docker daemon..."
|
||||||
|
|
||||||
# We use the absolute path /memex which both the runner and host understand
|
# Use the absolute path /memex which both the runner and host understand
|
||||||
|
|
||||||
docker compose \
|
docker compose \
|
||||||
-f /memex/projects/org-agent/deploy/docker/docker-compose.yml \
|
-f /memex/projects/org-agent/deploy/docker/docker-compose.yml \
|
||||||
|
|||||||
Reference in New Issue
Block a user