Install Dev Space Agent
Here is the docker compose file
Install Dev Space Agent
You can can install the agent service on any linux server running docker that you want to manage from the dashboard.
Upload the agent files to your server.
Open the server terminal and go to the agent folder using
cd /agent
for example.Run
docker compose up -d
to start the agent.You should see
Container devspace-agent Started
this confirms that it's working.You can now add your agent server to the Dev Space dashboard under your own team using the provided server ip and the agent key that will be created in the agent folder on your server in
Data/Config.json
Update Dev Space Agent
You can easily update the agent with a small package which will show up in your server home page.
Go to the Dev Space Agent folder.
Run
docker compose down
Upload and overwrite the current files with the new ones.
Run
docker compose up -d
Last updated