fix
This commit is contained in:
parent
f523713a9b
commit
a9ece32cce
|
|
@ -17,13 +17,24 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.3.0
|
- uses: actions/checkout@v4.3.0
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
cp .config/docker_example.env .config/docker.env
|
cp .config/docker_example.env .config/docker.env
|
||||||
cp ./compose_example.yml ./compose.yml
|
cp ./compose_example.yml ./compose.yml
|
||||||
|
|
||||||
- run: |
|
- run: |
|
||||||
docker compose up -d web
|
docker compose up -d web
|
||||||
IMAGE_ID=$(docker compose images --format json web | jq -r '.[0].ID')
|
IMAGE_ID=$(docker compose images --format json web | jq -r '.[0].ID')
|
||||||
docker tag "${IMAGE_ID}" misskey-web:latest
|
docker tag "${IMAGE_ID}" misskey-web:latest
|
||||||
|
|
||||||
|
- name: Debug docker images
|
||||||
|
run: |
|
||||||
|
echo "== docker images =="
|
||||||
|
docker images
|
||||||
|
echo
|
||||||
|
echo "== inspect misskey-web:latest =="
|
||||||
|
docker image inspect misskey-web:latest || echo "misskey-web:latest NOT FOUND"
|
||||||
|
|
||||||
- name: run dockle
|
- name: run dockle
|
||||||
env:
|
env:
|
||||||
DOCKER_CONTENT_TRUST: 0
|
DOCKER_CONTENT_TRUST: 0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue