Compare commits

...

4 commits

Author SHA1 Message Date
Madiator2011 6a2182ec94
Create .drone-comfyui.yml 2024-08-03 22:31:18 +02:00
Madiator2011 ce7702a079
Delete official-templates/better-comfyui/drone-comfyui.yml 2024-08-03 22:30:11 +02:00
Madiator2011 e887de72b2
Create drone-comfyui.yml 2024-08-03 22:29:49 +02:00
Madiator2011 151c790e7e
Delete .drone.yml 2024-08-03 22:27:59 +02:00
2 changed files with 21 additions and 147 deletions

21
.drone-comfyui.yml Normal file
View file

@ -0,0 +1,21 @@
kind: pipeline
type: docker
name: build-comfyui
trigger:
event:
- custom
steps:
- name: build-comfyui
image: docker:latest
privileged: true
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- cd official-templates/better-comfyui
- docker buildx bake --push --no-cache testing

View file

@ -1,147 +0,0 @@
kind: pipeline
type: docker
name: build-comfyui
trigger:
event:
- custom
steps:
- name: build-comfyui
image: docker:latest
privileged: true
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- cd official-templates/better-comfyui
- 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
---
kind: pipeline
type: docker
name: build-base
trigger:
event:
- custom
steps:
- name: build-base
image: docker:latest
privileged: true
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- cd official-templates/better-base
- 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
---
kind: pipeline
type: docker
name: build-everydream2
trigger:
event:
- custom
steps:
- name: build-everydream2
image: docker:latest
privileged: true
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- cd official-templates/better-everydream2
- 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
---
kind: pipeline
type: docker
name: build-ollama
trigger:
event:
- custom
steps:
- name: build-ollama
image: docker:latest
privileged: true
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- cd official-templates/better-ollama
- 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
---
kind: pipeline
type: docker
name: build-pytorch
trigger:
event:
- custom
steps:
- name: build-pytorch
image: docker:latest
privileged: true
environment:
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
commands:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- cd official-templates/better-pytorch
- 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