Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
|
@@ -5,9 +5,10 @@ EXPOSE 7860
|
|
| 5 |
ENV PGADMIN_DEFAULT_EMAIL=admin@example.com
|
| 6 |
ENV PGADMIN_DEFAULT_PASSWORD=adminpass
|
| 7 |
ENV PGADMIN_LISTEN_PORT=7860
|
|
|
|
| 8 |
ENV PGADMIN_CONFIG_SERVER_MODE=True
|
|
|
|
| 9 |
ENV PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10
|
|
|
|
| 10 |
|
| 11 |
-
|
| 12 |
-
COPY docker-run.py /pgadmin4/docker-run.py
|
| 13 |
-
CMD ["python", "/pgadmin4/docker-run.py"]
|
|
|
|
| 5 |
ENV PGADMIN_DEFAULT_EMAIL=admin@example.com
|
| 6 |
ENV PGADMIN_DEFAULT_PASSWORD=adminpass
|
| 7 |
ENV PGADMIN_LISTEN_PORT=7860
|
| 8 |
+
ENV PGADMIN_LISTEN_ADDRESS=0.0.0.0
|
| 9 |
ENV PGADMIN_CONFIG_SERVER_MODE=True
|
| 10 |
+
ENV PGADMIN_CONFIG_LOG_FILE=/tmp/pgadmin.log
|
| 11 |
ENV PGADMIN_CONFIG_CONSOLE_LOG_LEVEL=10
|
| 12 |
+
ENV PGADMIN_CONFIG_ALLOW_SAVE_PASSWORD=True
|
| 13 |
|
| 14 |
+
CMD ["python", "docker-run.py"]
|
|
|
|
|
|