alpha754293

Results 15 comments of alpha754293

@kroese Added `privileged: true` to the `docker-compose.yml` file and it still reports the same error. ``` ports: - 8006:8006 - 3389:3389/tcp - 3389:3389/udp stop_grace_period: 2m restart: on-failure privileged: true networks:...

Also adding my $.02 here as well: I currently have two instances of Jellyfin server deployed via Docker containers isolated to their own respective LXCs running on Proxmox 7.4. One...

This is the output of `sudo docker compose build`: ``` ubuntu@invoke-ai:~/InvokeAI/docker$ sudo docker compose build [sudo] password for ubuntu: [+] Building 5.0s (3/3) FINISHED docker:default => [invokeai-cuda internal] load build...

> Did you see the link I posted? Just run this: `docker run --runtime=nvidia --volume ${HOME}/invokeai:/invokeai --gpus=all --publish 9090:9090 ghcr.io/invoke-ai/invokeai` Yes, I saw that. But in the documentation, the instructions...

I ended up modifying the `docker run` command where `--publish 9090:9090` was changed to `--publish 0.0.0.0:9090:9090` so that I can access the UI from anywhere within my local network, and...