# Installation

The service can be installed through the Portainer web interface.

<p class="callout info">Learn about [creating a new stack](https://hub.subspace.services/books/portainer/page/creating-a-new-stack "Creating a New Stack").</p>

## Docker Compose

Use the following code to install the service:

```yaml
---
services:
  i-librarian:
    image: cgrima/i-librarian
    ports:
      - "2485:80"
    volumes:
      # Persistent Data
      - /srv/ilibrarian/:/app/data

      # Local Time for Container
      - /etc/localtime:/etc/localtime:ro
```