diff --git a/.woodpecker/build-customized.yml b/.woodpecker/build-customized.yml new file mode 100644 index 0000000..65bf390 --- /dev/null +++ b/.woodpecker/build-customized.yml @@ -0,0 +1,56 @@ + +when: + - event: manual + - event: push + +steps: + automatic: + image: woodpeckerci/plugin-docker-buildx + settings: + repo: gitea.simcop2387.info/simcop2387/new-stable-diffusion-automatic-custom + # dockerfile: ./stable-diffusion-webui-docker/services/AUTOMATIC1111/Dockerfile + dockerfile: ./custom/automatic/Dockerfile + context: ./custom/automatic/ + auto_tag: true + build_args: + - "BUILD_TAG=build-${CI_PIPELINE_NUMBER}" + tags: + - build-${CI_PIPELINE_NUMBER} + logins: + - registry: https://gitea.simcop2387.info/ + username: simcop2387 + password: + from_secret: docker_token + invoke: + image: woodpeckerci/plugin-docker-buildx + settings: + repo: gitea.simcop2387.info/simcop2387/new-stable-diffusion-invoke-custom + dockerfile: ./custom/invoke/Dockerfile + context: ./custom/invoke + auto_tag: true + build_args: + - "BUILD_TAG=build-${CI_PIPELINE_NUMBER}" + tags: + - build-${CI_PIPELINE_NUMBER} + logins: + - registry: https://gitea.simcop2387.info/ + username: simcop2387 + password: + from_secret: docker_token + + comfy: + image: woodpeckerci/plugin-docker-buildx + settings: + repo: gitea.simcop2387.info/simcop2387/new-stable-diffusion-comfy-custom + dockerfile: ./custom/comfy/Dockerfile + context: ./custom/comfy/ + auto_tag: true + build_args: + - "BUILD_TAG=build-${CI_PIPELINE_NUMBER}" + tags: + - build-${CI_PIPELINE_NUMBER} + logins: + - registry: https://gitea.simcop2387.info/ + username: simcop2387 + password: + from_secret: docker_token diff --git a/custom/automatic/Dockerfile b/custom/automatic/Dockerfile new file mode 100644 index 0000000..66a4d5a --- /dev/null +++ b/custom/automatic/Dockerfile @@ -0,0 +1,5 @@ +ARG AUTOMATIC_BASE_TAG=latest +FROM gitea.simcop2387.info/simcop2387/new-stable-diffusion-automatic:$AUTOMATIC_BASE_TAG +ARG AUTOMATIC_BASE_TAG=latest + + diff --git a/custom/comfy/Dockerfile b/custom/comfy/Dockerfile new file mode 100644 index 0000000..6781f51 --- /dev/null +++ b/custom/comfy/Dockerfile @@ -0,0 +1,5 @@ +ARG COMFY_BASE_TAG=latest +FROM gitea.simcop2387.info/simcop2387/new-stable-diffusion-comfy:$COMFY_BASE_TAG +ARG COMFY_BASE_TAG=latest + + diff --git a/custom/invoke/Dockerfile b/custom/invoke/Dockerfile new file mode 100644 index 0000000..7e05931 --- /dev/null +++ b/custom/invoke/Dockerfile @@ -0,0 +1,5 @@ +ARG INVOKE_BASE_TAG=latest +FROM gitea.simcop2387.info/simcop2387/new-stable-diffusion-invoke:$INVOKE_BASE_TAG +ARG INVOKE_BASE_TAG=latest + +