-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
Error facing during Quickstart #307
Comments
Hi @junu0723 , this looks like a problem in your local docker engine, maybe try this: docker system prune --all
sudo service docker restart warning: the first command will delete all previously cached images in your system |
hey @junu0723, is docker proxy service up and running? |
@tdari
|
@junu0723 did you modify the compose env variables for the rest service? I was able to start without any problem. This is my compose file. It looks like there is something with the default user. domino_rest: |
Finally success! Thanks @luiztauffer and @tdari. Now I can login, and create some workflow :) I'm still curious about how to add more pieces and how to generate custom pieces, but I'll check on my side first on that issue. Just focusing here on reporting the errors during Quickstart in M2 Mac.
And the domino_rest part in the docker-compose.yaml file that is automatically created is: # Domino REST Api
domino_rest:
image: ghcr.io/tauffer-consulting/domino-rest:latest${DOMINO_COMPOSE_DEV}
container_name: domino-rest
command: bash -c "alembic upgrade heads && python -m utils.populate_first_user && uvicorn main:app --reload --workers 1 --host 0.0.0.0 --port 8000"
ports:
- 8000:8000
environment:
- DOMINO_DB_USER=postgres
- DOMINO_DB_PASSWORD=postgres
- DOMINO_DB_HOST=domino_postgres
- DOMINO_DB_PORT=5432
- DOMINO_DB_NAME=postgres
- DOMINO_DEFAULT_PIECES_REPOSITORY_TOKEN=${DOMINO_DEFAULT_PIECES_REPOSITORY_TOKEN}
- DOMINO_DEPLOY_MODE=local-compose
- AIRFLOW_ADMIN_USERNAME=airflow
- AIRFLOW_ADMIN_PASSWORD=airflow
- CREATE_DEFAULT_USER=${DOMINO_CREATE_DEFAULT_USER}
networks:
- domino-postgres-network
- default
volumes:
- ${AIRFLOW_PROJ_DIR:-./airflow}/dags:/opt/airflow/dags
depends_on:
domino_postgres:
condition: service_healthy |
Version
0.9.4
Platform
Darwin 2033000841 23.5.0 Darwin Kernel Version 23.5.0: Wed May 1 20:13:18 PDT 2024; root:xnu-10063.121.3~5/RELEASE_ARM64_T6030 arm64
Docker version
Docker version 27.0.3, build 7d4bcd8
Kubernetes version
No response
Describe the bug.
During the command
$ domino platform run-compose
, it failed with the below error.What steps will reproduce the bug?
No response
What is the expected behavior? Why is that the expected behavior?
No response
What do you see instead?
No response
Additional information
No response
The text was updated successfully, but these errors were encountered: