# Install via docker

Utilizing Docker, you can effortlessly pull and run a pre-configured Singularity image.

## Pulling the Docker Image

To acquire the pre-built Docker image, execute the following command:

```bash
docker pull ghcr.io/data-preservation-programs/singularity:main
```

## Running Singularity from the Docker Image

### Using Default SQLite3 Backend

By default, Singularity uses `sqlite3` as its database backend. To run it, you should mount a local path to the home directory within the container:

```bash
docker run -v $HOME:/root ghcr.io/data-preservation-programs/singularity:main -h
```

### Using an Alternate Database Backend (e.g., Postgres)

If you opt for another database backend like Postgres, set the `DATABASE_CONNECTION_STRING` environment variable during container execution:

```bash
docker run -e DATABASE_CONNECTION_STRING=your_connection_string_here ghcr.io/data-preservation-programs/singularity:main -h
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://data-programs.gitbook.io/singularity/installation/install-from-docker.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
