Skip to content

Commit

Permalink
added docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
Avaray committed Nov 20, 2024
1 parent 51126e6 commit bd5860c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions data/uis.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export interface UI {
id: string;
name: string;
image?: string;
repository: string;
pvs: string;
supports: string[];
Expand All @@ -15,27 +16,31 @@ const userInterfaces: UI[] = [
{
id: 'forge',
name: 'Forge',
image: 'aidockorg/stable-diffusion-webui-forge-cuda:latest',
repository: 'https://github.com/ai-dock/stable-diffusion-webui-forge',
pvs: '',
supports: ['sdxl', 'pdxl'],
},
{
id: 'comfy',
name: 'Comfy',
image: 'aidockorg/comfyui-cuda:latest',
repository: 'https://github.com/ai-dock/comfyui',
pvs: '',
supports: ['sdxl', 'pdxl'],
},
{
id: 'invoke',
name: 'Invoke',
image: '',
repository: 'https://github.com/ai-dock/invokeai',
pvs: '',
supports: ['sdxl', 'pdxl'],
},
{
id: 'fooocus',
name: 'Fooocus',
image: 'aidockorg/fooocus-cuda:latest',
repository: 'https://github.com/ai-dock/fooocus',
pvs: '',
supports: ['sdxl', 'pdxl'],
Expand Down

0 comments on commit bd5860c

Please sign in to comment.