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
I'm facing an issue while setting up Project Alice on my system. The workflow container fails to pull its Docker image, and I encounter the following error during the build process:
manifest for us-central-docker.pkg.dev/alice-assistant-417621/project-alice-repo/workflow:latest not found: manifest unknown: Failed to fetch "latest"
This prevents the workflow service from building or starting successfully.
Run the project using python3 run.py or docker-compose up.
The error appears during the docker-compose up step.
Expected Behavior
The workflow container should build or pull successfully and the application should run without errors.
Actual Behavior
The build process fails with the error:
manifest for us-central-docker.pkg.dev/alice-assistant-417621/project-alice-repo/workflow:latest not found
Environment
Operating System: macOS Sequoia 15.1
Chip: Apple M3
Python Version: 3.11.4
Docker Version: Latest (CLI and Compose installed)
Node.js Version: Latest (if relevant)
Suggested Fix
It seems the Docker Compose configuration is pointing to an image (workflow:latest) that doesn't exist or is inaccessible. Perhaps the workflow service is expected to be built locally rather than pulled. A few suggestions:
Ensure that the required image exists in the repository.
Update the docker-compose.yml file to use a build configuration for the workflow service instead of pulling an image, such as:
Attached is the screenshot showing the error.
![Error Screenshot](Attach your error screenshot here.)
Additional Context
If additional dependencies or configurations are required to build the workflow container locally, please include them in the README to help others avoid similar issues.
The text was updated successfully, but these errors were encountered:
Description
I'm facing an issue while setting up Project Alice on my system. The workflow container fails to pull its Docker image, and I encounter the following error during the build process:
This prevents the
workflow
service from building or starting successfully.Steps to Reproduce
.env
file using thetemplate.env
.python3 run.py
ordocker-compose up
.docker-compose up
step.Expected Behavior
The
workflow
container should build or pull successfully and the application should run without errors.Actual Behavior
The build process fails with the error:
Environment
Suggested Fix
It seems the Docker Compose configuration is pointing to an image (
workflow:latest
) that doesn't exist or is inaccessible. Perhaps the workflow service is expected to be built locally rather than pulled. A few suggestions:docker-compose.yml
file to use abuild
configuration for theworkflow
service instead of pulling an image, such as:Screenshots
Attached is the screenshot showing the error.
![Error Screenshot](Attach your error screenshot here.)
Additional Context
If additional dependencies or configurations are required to build the workflow container locally, please include them in the README to help others avoid similar issues.
The text was updated successfully, but these errors were encountered: