
Reputation
Badges 1
9 × Eureka!Very helpful this was thank you!
FROM ubuntu:20.04
WORKDIR /usr/agent
COPY . /usr/agent
RUN apt-get update
RUN apt-get dist-upgrade -y
RUN apt-get install -y curl python3-pip git
RUN curl -sSL https://get.docker.com/ | sh
RUN python3 -m pip install -U pip
RUN python3 -m pip install clearml-agent
RUN python3 -m pip install -U "cryptography>=2.9"
COPY clearml.conf ~/clearml.conf
ENV CLEARML_DOCKER_SKIP_GPUS_FLAG=1
CMD clearml-agent daemon --cpu-only
SweetBadger76
Also im looking to start new clearly agents based on the number of tasks
I'm trying to copy it to the home of docker container
How do I save these as pngs?
Hi David
So I want to execute more than two tasks simultaneously using an agent
To my understanding one agent can execute only one task at a time and queues the remaining.
So what I want to achieve is to spin up N agents of there are N tasks
What's the best way to do it?
Yes I tried curl, returns permission denied
The error log is exactly same as the thread
I'm facing the same issue, can someone please help me with it