mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-08 00:24:25 +01:00
Remove dead config
This commit is contained in:
parent
3846483058
commit
eb809cded2
5
.github/workflows/docker.yml
vendored
5
.github/workflows/docker.yml
vendored
|
|
@ -1,13 +1,14 @@
|
||||||
name: Build Image
|
name: Build Images
|
||||||
|
|
||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build_all:
|
build_all:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
name: All
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
# better caching?
|
# better caching?
|
||||||
|
- run: docker compose --profile auto build --progress plain
|
||||||
- run: docker compose --profile hlky build --progress plain
|
- run: docker compose --profile hlky build --progress plain
|
||||||
- run: docker compose --profile auto build --progress plain
|
|
||||||
- run: docker compose --profile lstein build --progress plain
|
- run: docker compose --profile lstein build --progress plain
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,10 @@ version: '3.9'
|
||||||
x-base_service: &base_service
|
x-base_service: &base_service
|
||||||
ports:
|
ports:
|
||||||
- "7860:7860"
|
- "7860:7860"
|
||||||
volumes: &base_volumes
|
volumes:
|
||||||
- ./cache:/cache
|
- &v1 ./cache:/cache
|
||||||
- ./output:/output
|
- &v2 ./output:/output
|
||||||
- ./models:/models
|
- &v3 ./models:/models
|
||||||
deploy:
|
deploy:
|
||||||
resources:
|
resources:
|
||||||
reservations:
|
reservations:
|
||||||
|
|
@ -29,6 +29,11 @@ services:
|
||||||
<<: *base_service
|
<<: *base_service
|
||||||
profiles: ["auto"]
|
profiles: ["auto"]
|
||||||
build: ./services/AUTOMATIC1111
|
build: ./services/AUTOMATIC1111
|
||||||
|
volumes:
|
||||||
|
- *v1
|
||||||
|
- *v2
|
||||||
|
- *v3
|
||||||
|
- ./services/AUTOMATIC1111/config.json:/docker/config.json
|
||||||
environment:
|
environment:
|
||||||
- CLI_ARGS=--medvram --opt-split-attention
|
- CLI_ARGS=--medvram --opt-split-attention
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
{"outdir_samples": "/output", "outdir_txt2img_samples": "/output/txt2img-images", "outdir_img2img_samples": "/output/img2img-images", "outdir_extras_samples": "/output/extras-images", "outdir_txt2img_grids": "/output/txt2img-grids", "outdir_img2img_grids": "/output/img2img-grids", "outdir_save": "/output/saved", "__WARNING__": "DON'T CHANGE ANYTHING BEFORE THIS", "outdir_grids": "", "save_to_dirs": false, "save_to_dirs_prompt_len": 10, "samples_save": true, "samples_format": "png", "grid_save": true, "return_grid": true, "grid_format": "png", "grid_extended_filename": false, "grid_only_if_multiple": true, "n_rows": -1, "jpeg_quality": 80, "export_for_4chan": true, "enable_pnginfo": true, "font": "DejaVuSans.ttf", "enable_emphasis": true, "save_txt": false, "ESRGAN_tile": 192, "ESRGAN_tile_overlap": 8, "random_artist_categories": [], "upscale_at_full_resolution_padding": 16, "show_progressbar": true, "show_progress_every_n_steps": 0, "multiple_tqdm": true, "face_restoration_model": "CodeFormer", "code_former_weight": 0.5}
|
{"outdir_samples": "/output", "outdir_txt2img_samples": "/output/txt2img-images", "outdir_img2img_samples": "/output/img2img-images", "outdir_extras_samples": "/output/extras-images", "outdir_txt2img_grids": "/output/txt2img-grids", "outdir_img2img_grids": "/output/img2img-grids", "outdir_save": "/output/saved", "__WARNING__": "DON'T CHANGE ANYTHING BEFORE THIS", "outdir_grids": "", "save_to_dirs": false, "save_to_dirs_prompt_len": 10, "samples_save": true, "samples_format": "png", "grid_save": true, "return_grid": true, "grid_format": "png", "grid_extended_filename": false, "grid_only_if_multiple": true, "n_rows": -1, "jpeg_quality": 80, "export_for_4chan": true, "enable_pnginfo": true, "font": "DejaVuSans.ttf", "enable_emphasis": true, "save_txt": false, "ESRGAN_tile": 192, "ESRGAN_tile_overlap": 8, "random_artist_categories": [], "upscale_at_full_resolution_padding": 16, "show_progressbar": true, "show_progress_every_n_steps": 5, "multiple_tqdm": true, "face_restoration_model": "CodeFormer", "code_former_weight": 0.5, "grid_save_to_dirs": false}
|
||||||
|
|
@ -1,21 +0,0 @@
|
||||||
version: '3.9'
|
|
||||||
|
|
||||||
services:
|
|
||||||
model:
|
|
||||||
build: .
|
|
||||||
ports:
|
|
||||||
- "7860:7860"
|
|
||||||
volumes:
|
|
||||||
- ../cache:/cache
|
|
||||||
- ../output:/output
|
|
||||||
- ../models:/models
|
|
||||||
- ./config.json:/docker/config.json
|
|
||||||
environment:
|
|
||||||
- CLI_ARGS=--medvram --opt-split-attention
|
|
||||||
deploy:
|
|
||||||
resources:
|
|
||||||
reservations:
|
|
||||||
devices:
|
|
||||||
- driver: nvidia
|
|
||||||
device_ids: ['0']
|
|
||||||
capabilities: [gpu]
|
|
||||||
|
|
@ -1,20 +0,0 @@
|
||||||
version: '3.9'
|
|
||||||
|
|
||||||
services:
|
|
||||||
model:
|
|
||||||
build: .
|
|
||||||
ports:
|
|
||||||
- "7860:7860"
|
|
||||||
volumes:
|
|
||||||
- ../cache:/cache
|
|
||||||
- ../output:/output
|
|
||||||
- ../models:/models
|
|
||||||
environment:
|
|
||||||
- CLI_ARGS=
|
|
||||||
deploy:
|
|
||||||
resources:
|
|
||||||
reservations:
|
|
||||||
devices:
|
|
||||||
- driver: nvidia
|
|
||||||
device_ids: ['0']
|
|
||||||
capabilities: [gpu]
|
|
||||||
Loading…
Reference in a new issue