Add health check to pgsql docker image

Bu işleme şunda yer alıyor:
Jan Dittberner 2019-07-05 21:11:39 +02:00
ebeveyn d231f90c90
işleme dc96c9472b
3 değiştirilmiş dosya ile 4 ekleme ve 0 silme

2
.dockerignore Normal dosya
Dosyayı Görüntüle

@ -0,0 +1,2 @@
.git
.idea

1
.gitignore sağlanmış Normal dosya
Dosyayı Görüntüle

@ -0,0 +1 @@
.idea/

Dosyayı Görüntüle

@ -13,6 +13,7 @@ EXPOSE 5432
VOLUME /var/lib/postgresql/
COPY pg_hba.conf /etc/postgresql/9.6/main/pg_hba.conf
COPY startup.sh /srv/
HEALTHCHECK CMD pg_isready -d postgres
ENTRYPOINT ["dumb-init"]
CMD "/srv/startup.sh"