mirror of
https://codeberg.org/demostf/postgres_refresh.git
synced 2026-06-03 09:04:08 +02:00
13 lines
192 B
Docker
13 lines
192 B
Docker
FROM alpine:3.8
|
|
|
|
RUN apk add --no-cache postgresql
|
|
ADD loop.sh /
|
|
|
|
ENV POSTGRES_USER=postgres
|
|
ENV POSTGRES_DATABASE=postgres
|
|
ENV POSTGRES_PORT=5432
|
|
ENV INTERVAL=3600
|
|
|
|
ENTRYPOINT ["/loop.sh"]
|
|
|
|
|