Skip to content

Commit 1eb20a0

Browse files
florian-jaegernatkam
authored andcommitted
fix: added psycog2 package to init container and set grader network
1 parent 4accee4 commit 1eb20a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/docker_compose/Dockerfile-DBInit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM postgres
22

33
# Install git
44
RUN apt-get update && \
5-
apt-get install -y python3 python3-venv && \
5+
apt-get install -y python3 python3-venv python3-psycopg2 && \
66
apt-get clean && \
77
rm -rf /var/lib/apt/lists/*
88

examples/docker_compose/jupyterhub_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
c.JupyterHub.spawner_class = "dockerspawner.DockerSpawner"
2727

2828
c.DockerSpawner.use_internal_ip = True
29-
c.DockerSpawner.network_name = "grader_network"
29+
c.DockerSpawner.network_name = "grader_default"
3030

3131
c.DockerSpawner.remove = True
3232

0 commit comments

Comments
 (0)