# Dockerを使用してインストールする

Dockerを使用すると、事前に構成済みのSingularityイメージを簡単に取得して実行できます。

## Dockerイメージの取得

事前にビルドされたDockerイメージを取得するには、次のコマンドを実行します:

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

## DockerイメージからSingularityを実行する

### デフォルトのSQLite3バックエンドを使用する場合

デフォルトでは、Singularityはデータベースバックエンドとして `sqlite3` を使用します。実行するには、コンテナ内のホームディレクトリにローカルパスをマウントする必要があります:

```bash
docker run -v $HOME:/root ghcr.io/datapreservationprogram/singularity -h
```

### 別のデータベースバックエンドを使用する場合（例：Postgres）

Postgresのような別のデータベースバックエンドを選択する場合は、コンテナの実行時に`DATABASE_CONNECTION_STRING`環境変数を設定します:

```bash
docker run -e DATABASE_CONNECTION_STRING=your_connection_string_here ghcr.io/datapreservationprogram/singularity -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/jp/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.
