Top "Docker-entrypoint" questions

postgresql: dockerfile create user and database from entrypoint script

I have a Dockerfile COPY ./docker-entrypoint.sh / RUN chmod +x /docker-entrypoint.sh USER postgres ENTRYPOINT ["/docker-entrypoint.sh"] where docker-entrypoint.sh …

postgresql docker docker-entrypoint
Docker Standard_init_linux.go:207: exec user process caused “no such file or directory”

My Dockerfile looks like: FROM ubuntu:18.04 RUN apt-get ... ... COPY app /bin And my executable app is just bash script: make …

docker dockerfile entry-point docker-entrypoint