mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-13 04:53:01 +00:00
DEV: Split postgres example into separate db and hub containers.
This commit is contained in:
10
examples/postgres/db/Dockerfile
Normal file
10
examples/postgres/db/Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM postgres:9.3
|
||||
|
||||
RUN mkdir /docker-entrypoint-initdb.d
|
||||
|
||||
# initdb.sh will be run by the parent container's entrypoint on container
|
||||
# startup, prior to the the database being started.
|
||||
COPY initdb.sh /docker-entrypoint-initdb.d/init.sh
|
||||
|
||||
# Replace this with your own password.
|
||||
ENV JPY_PSQL_PASSWORD arglebargle
|
Reference in New Issue
Block a user