Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workflow container fails to build: manifest unknown #19

Open
deepusnath opened this issue Jan 17, 2025 · 0 comments
Open

Workflow container fails to build: manifest unknown #19

deepusnath opened this issue Jan 17, 2025 · 0 comments

Comments

@deepusnath
Copy link

Image

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:

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.


Steps to Reproduce

  1. Clone the repository:
    git clone https://github.com/MarianoMolina/project_alice.git
  2. Set up the .env file using the template.env.
  3. Run the project using python3 run.py or docker-compose up.
  4. 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:

  1. Ensure that the required image exists in the repository.
  2. Update the docker-compose.yml file to use a build configuration for the workflow service instead of pulling an image, such as:
    services:
      workflow:
        build:
          context: ./workflow
          dockerfile: Dockerfile

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant