You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hosted on [GitHub Container Registry](https://github.com/MaastrichtU-Library/postgres) ([ghcr.io](https://ghcr.io)) to avoid DockerHub pull limitations, and easily deploy on clusters (such as Kubernetes).
# The image on [ghcr.io](https://ghcr.io) is automatically updated every week (Monday at 3:00 GMT+1) by a GitHub Actions workflow to match the `latest` tag of [cellprofiler](https://hub.docker.com/_/cellprofiler)
14
+
15
+
## Run
16
+
17
+
```bash
18
+
docker run -it -v $(pwd):/root ghcr.io/maastrichtu-library/postgres:latest
19
+
```
20
+
21
+
In the container:
22
+
23
+
* User, with `sudo` privileges: `root`
24
+
* Workspace path: `/root`
25
+
26
+
Set entrypoint to `tail -f /dev/null` to keep it hanging as a service.
27
+
28
+
```bash
29
+
docker run -it --entrypoint tail -v $(pwd):/root ghcr.io/maastrichtu-library/postgres:latest -f /dev/null
30
+
```
31
+
32
+
## Build
33
+
34
+
Feel free to edit the `Dockerfile` to install additional packages in the image.
0 commit comments