Skip to content

Commit 1384093

Browse files
authored
Docs: Fix Docker image reference (#433)
The first reference appears to be correct, while the two below are 404. Updating them all to the first.
1 parent ec7cb6c commit 1384093

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/en/installation/install-from-docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ docker pull ghcr.io/data-preservation-programs/singularity:main
1616
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:
1717

1818
```bash
19-
docker run -v $HOME:/root ghcr.io/datapreservationprogram/singularity -h
19+
docker run -v $HOME:/root ghcr.io/data-preservation-programs/singularity:main -h
2020
```
2121

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

2424
If you opt for another database backend like Postgres, set the `DATABASE_CONNECTION_STRING` environment variable during container execution:
2525
```bash
26-
docker run -e DATABASE_CONNECTION_STRING=your_connection_string_here ghcr.io/datapreservationprogram/singularity -h
26+
docker run -e DATABASE_CONNECTION_STRING=your_connection_string_here ghcr.io/data-preservation-programs/singularity:main -h
2727
```

0 commit comments

Comments
 (0)