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
But when I'm trying to send jobs I'm getting error:
docker: invalid reference format.
See 'docker run --help'.
Seem that the trigger line is brake it since:
'-e', 'CLEARML_DOCKER_IMAGE=',
Which can cause this brake.
All the ENVS I passed not affect it, so I've tried to change the clearml.conf and add agent section:
agent {
# Set GIT user/pass credentials (if user/pass are set, GIT protocol will be set to https)
git_user=""
git_pass=""
# all other domains will use public access (no user/pass). Default: always send user/pass for any VCS domain
git_host="https://gitlab.domain.local/"
# Force GIT protocol to use SSH regardless of the git url (Assumes GIT user/pass are blank)
force_git_ssh_protocol: true
# unique name of this worker, if None, created based on hostname:process_id
# Overridden with os environment: CLEARML_WORKER_NAME
worker_id: "MyHost"
extra_docker_arguments: ["-v /root/clearml.conf:/root/clearml.conf:ro", "-v /root/.ssh:/root/.ssh:ro" ]
docker_allow_host_environ: true
default_docker {
image: "python:3.8-slim"
}
}
But still the same result.
How do I affect the image here and provide this environment?
Do we need this environment at all? this is the container that triggered, why it need a variable?
I got another issue with reading clearml.conf in the child docker, how we make sure they passed on, or how I can add an argument in the child docker to make sure pass -v clearml.conf:clearml.conf?
The text was updated successfully, but these errors were encountered:
It seems your docker-compose version does not support the file format, you'll need to upgrade it
How it's related the docker-compose? agent compose is with last version (3.8), and inside the agent it's ClearML image, so I don't have control of it: allegroai/clearml-agent:latest
This is my
docker-compose.yaml
file:But when I'm trying to send jobs I'm getting error:
Seem that the trigger line is brake it since:
Which can cause this brake.
All the ENVS I passed not affect it, so I've tried to change the
clearml.conf
and add agent section:But still the same result.
clearml.conf
in the child docker, how we make sure they passed on, or how I can add an argument in the child docker to make sure pass-v clearml.conf:clearml.conf
?The text was updated successfully, but these errors were encountered: