Skip to content

Commit 4646627

Browse files
committed
Update README and Dockerfile with database information and image version
1 parent 7898e41 commit 4646627

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ Everything in [jupyter/scipy-notebook](https://jupyter-docker-stacks.readthedocs
88

99
jupysql to run SQL in Jupyter/IPython via a %sql and %%sql magics.
1010

11-
python-lsp-ruff a linter plugin for pylsp based on ruff.
11+
PostgreSQL is a relational database management system emphasizing extensibility and SQL compliance.
12+
13+
SQLite is the most used relational database management system in the world.
14+
15+
DuckDB is a column-oriented relational database management system.
16+
17+
Redis is the most used NoSQL database.
1218

1319
## Credits
1420

image/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Copyright (c) SIPist Development Team
22
# Distributed under the terms of the Modified BSD License.
3-
FROM quay.io/jupyter/scipy-notebook:2024-12-09
3+
FROM quay.io/jupyter/scipy-notebook:2024-12-23
44

55
LABEL maintainer="Flavio Martins <[email protected]>"
6+
ARG NB_BUILD=0
67

78
# Fix: https://github.com/hadolint/hadolint/wiki/DL4006
89
# Fix: https://github.com/koalaman/shellcheck/wiki/SC3014
@@ -23,7 +24,8 @@ RUN apt-get update --yes && \
2324
postgresql-client-15 \
2425
postgresql-client-16 \
2526
postgresql-client-17 \
26-
pspg && \
27+
pspg \
28+
pgloader && \
2729
apt-get clean && rm -rf /var/lib/apt/lists/*
2830

2931
USER ${NB_UID}

0 commit comments

Comments
 (0)