You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
I’m trying to set up Applio using Docker with CUDA support, but I’m unable to make it work. The repository includes a Dockerfile and docker-compose.yml, and it’s typically hosted on Gradio. I believe the setup shouldn’t be too complicated, but I’m facing issues.
Steps I’ve Taken:
Environment Setup:
Added GRADIO_SERVER_NAME=0.0.0.0 to the .env file, similar to other Gradio-based hosted servers (e.g., FaceFusion).
Exposed port 6969 in the Docker configuration.
Dockerfile Configuration:
Set WORKDIR to /app.
Used python:3.10-bullseye as the base image.
Created a Python virtual environment in /app/.venv.
Added /app/logs/ as a volume.
Updated the PATH to include the virtual environment.
The project relies on CUDA, so proper GPU support is essential.
I’ve followed similar setups for other Gradio-based projects (e.g., FaceFusion), but this one isn’t working.
Request:
Could someone help me troubleshoot this issue? Specifically:
Are there any missing steps in the Docker or CUDA configuration?
Are there any known issues with the Dockerfile or docker-compose.yml in the repository?
Are there additional logs or debugging steps I should provide?
Thank you!
Code Snippets:
Dockerfile:
WORKDIR /app
FROM python:3.10-bullseye
RUN python3 -m venv /app/.venv && \
(Python environment is included as a runtime folder)
VOLUME ["/app/logs/"]
ENV PATH="/app/.venv/bin:$PATH"
Description:
I’m trying to set up Applio using Docker with CUDA support, but I’m unable to make it work. The repository includes a
Dockerfile
anddocker-compose.yml
, and it’s typically hosted on Gradio. I believe the setup shouldn’t be too complicated, but I’m facing issues.Steps I’ve Taken:
Environment Setup:
GRADIO_SERVER_NAME=0.0.0.0
to the.env
file, similar to other Gradio-based hosted servers (e.g., FaceFusion).6969
in the Docker configuration.Dockerfile Configuration:
WORKDIR
to/app
.python:3.10-bullseye
as the base image./app/.venv
./app/logs/
as a volume.PATH
to include the virtual environment.CUDA Support:
Expected Behavior:
The Docker container should start successfully, and the Gradio server should be accessible on port
6969
with CUDA support enabled.Actual Behavior:
The setup does not work as expected, and I’m unable to access the Gradio server.
Additional Context:
Request:
Could someone help me troubleshoot this issue? Specifically:
Dockerfile
ordocker-compose.yml
in the repository?Thank you!
Code Snippets:
Dockerfile:
Environment Variables:
The text was updated successfully, but these errors were encountered: