> For the complete documentation index, see [llms.txt](https://rembrandt.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://rembrandt.gitbook.io/docs/deployment.md).

# Deployment

## Prerequisites

* Docker (>=v1.25)

## Using Docker

{% tabs %}
{% tab title="Docker Stack" %}

1. Download the compose file

   ```bash
   $ wget https://github.com/bptlab/rembrandt/raw/master/docker-compose.yml
   ```
2. Deploy the service using docker stack:

   ```bash
   $ docker stack deploy -c docker-compose.yml rembrandt
   ```

{% endtab %}

{% tab title="Docker Compose" %}

1. Download the compose file

   ```bash
   $ wget https://github.com/bptlab/rembrandt/raw/master/docker-compose.yml
   ```
2. Deploy the service using docker-compose:

   ```bash
   $ docker-compose up
   ```

{% endtab %}
{% endtabs %}
