# Upgrade Bindplane Server in Docker Compose

Bindplane Server can be upgraded by updating the image version tag in your `docker-compose.yaml` file.

```yaml
# ...
services:
  bindplane:
    image: ghcr.io/observiq/bindplane-ee:1.87.0
    # ...
```

Once the new image tag is updated in the `docker-compose.yaml`, restart your Docker Compose services.

```bash
docker compose down
docker compose up -d
```
