make new customized containers
This commit is contained in:
parent
fb200e0b14
commit
5130bc4db0
4 changed files with 71 additions and 0 deletions
56
.woodpecker/build-customized.yml
Normal file
56
.woodpecker/build-customized.yml
Normal file
|
@ -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
|
5
custom/automatic/Dockerfile
Normal file
5
custom/automatic/Dockerfile
Normal file
|
@ -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
|
||||||
|
|
||||||
|
|
5
custom/comfy/Dockerfile
Normal file
5
custom/comfy/Dockerfile
Normal file
|
@ -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
|
||||||
|
|
||||||
|
|
5
custom/invoke/Dockerfile
Normal file
5
custom/invoke/Dockerfile
Normal file
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue