pgadmin / Dockerfile
sarveshpatel's picture
Update Dockerfile
b51ca92 verified
raw
history blame contribute delete
386 Bytes
FROM dpage/pgadmin4:latest
EXPOSE 7860
ENV PGADMIN_DEFAULT_EMAIL=admin@example.com
ENV PGADMIN_DEFAULT_PASSWORD=adminpass
ENV PGADMIN_LISTEN_PORT=7860
ENV PGADMIN_LISTEN_ADDRESS=0.0.0.0
ENV PGADMIN_CONFIG_SERVER_MODE=True
ENV PGADMIN_CONFIG_LOG_FILE=/tmp/pgadmin.log
ENV PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10
ENV PGADMIN_CONFIG_ALLOW_SAVE_PASSWORD=True
CMD ["python", "docker-run.py"]