mirror of
https://github.com/kodxana/madiator-docker-runpod.git
synced 2024-11-10 05:25:18 +01:00
22 lines
459 B
YAML
22 lines
459 B
YAML
|
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
|