Docker Compose (JSON)

Docker Compose in JSON format

JSON

{
  "version": "3.8",
  "services": {
    "web": {
      "image": "nginx:latest",
      "ports": [
        "80:80"
      ]
    },
    "db": {
      "image": "postgres:15",
      "environment": {
        "POSTGRES_PASSWORD": "secret"
      }
    }
  }
}

Stats

Related tools

Other examples