12 lines
248 B
Docker
12 lines
248 B
Docker
|
|
FROM docker.io/timescale/timescaledb:latest-pg16
|
||
|
|
|
||
|
|
LABEL maintainer="WPIC Datahub" \
|
||
|
|
app.name="datahub-postgres"
|
||
|
|
|
||
|
|
ENV TZ=Asia/Shanghai \
|
||
|
|
LANG=en_US.utf8
|
||
|
|
|
||
|
|
COPY deploy/podman/images/postgres/initdb/ /docker-entrypoint-initdb.d/
|
||
|
|
|
||
|
|
EXPOSE 5432
|