mirror of
https://github.com/kodxana/madiator-docker-runpod.git
synced 2024-11-10 05:25:18 +01:00
This commit is contained in:
parent
3062bcc049
commit
87f95fe99c
1 changed files with 35 additions and 5 deletions
40
.drone.yml
40
.drone.yml
|
@ -27,7 +27,13 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
||||||
- cd official-templates/better-comfyui
|
- cd official-templates/better-comfyui
|
||||||
- docker buildx bake --push --no-cache testing
|
- docker buildx bake --push --no-cache testing --label build_target=comfyui
|
||||||
|
|
||||||
|
- name: cleanup
|
||||||
|
image: docker:latest
|
||||||
|
privileged: true
|
||||||
|
commands:
|
||||||
|
- docker images -q --filter "label=build_target=comfyui" | xargs -r docker rmi
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -60,7 +66,13 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
||||||
- cd official-templates/better-base
|
- cd official-templates/better-base
|
||||||
- docker buildx bake --push --no-cache testing
|
- docker buildx bake --push --no-cache testing --label build_target=base
|
||||||
|
|
||||||
|
- name: cleanup
|
||||||
|
image: docker:latest
|
||||||
|
privileged: true
|
||||||
|
commands:
|
||||||
|
- docker images -q --filter "label=build_target=base" | xargs -r docker rmi
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -93,7 +105,13 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
||||||
- cd official-templates/better-everydream2
|
- cd official-templates/better-everydream2
|
||||||
- docker buildx bake --push --no-cache testing
|
- docker buildx bake --push --no-cache testing --label build_target=everydream2
|
||||||
|
|
||||||
|
- name: cleanup
|
||||||
|
image: docker:latest
|
||||||
|
privileged: true
|
||||||
|
commands:
|
||||||
|
- docker images -q --filter "label=build_target=everydream2" | xargs -r docker rmi
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -126,7 +144,13 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
||||||
- cd official-templates/better-ollama
|
- cd official-templates/better-ollama
|
||||||
- docker buildx bake --push --no-cache testing
|
- docker buildx bake --push --no-cache testing --label build_target=ollama
|
||||||
|
|
||||||
|
- name: cleanup
|
||||||
|
image: docker:latest
|
||||||
|
privileged: true
|
||||||
|
commands:
|
||||||
|
- docker images -q --filter "label=build_target=ollama" | xargs -r docker rmi
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -159,4 +183,10 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
- docker login -u ${DOCKER_USERNAME} -p ${DOCKER_PASSWORD}
|
||||||
- cd official-templates/better-pytorch
|
- cd official-templates/better-pytorch
|
||||||
- docker buildx bake --push --no-cache testing
|
- docker buildx bake --push --no-cache testing --label build_target=pytorch
|
||||||
|
|
||||||
|
- name: cleanup
|
||||||
|
image: docker:latest
|
||||||
|
privileged: true
|
||||||
|
commands:
|
||||||
|
- docker images -q --filter "label=build_target=pytorch" | xargs -r docker rmi
|
||||||
|
|
Loading…
Reference in a new issue