Ploi API
Ploi API

Get container

Get a specific container from your server.

GET /api/servers/{server}/docker/containers/{container}

Example request:

curl -X GET "https://ploi.io/api/servers/{server}/docker/containers/1" \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"

Response

{
  "id": 1,
  "status": "active",
  "name": "nginx-app",
  "deploy_script": "version: '3'\nservices:\n  web:\n    image: nginx:latest\n    ports:\n      - '8080:80'",
  "path": "/home/ploi/containers/nginx-app",
  "last_deploy_at": null,
  "created_at": "2025-04-01T10:00:00.000000Z",
  "type": "docker",
  "state": "running"
}