We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfb35b commit dc52d66Copy full SHA for dc52d66
2 files changed
Makefile
@@ -77,6 +77,7 @@ update-dockers: ## Update docker images
77
@echo "🐳 Building nebula-database docker image. Do you want to continue (overrides existing image)? (y/n)"
78
@read ans; if [ "$${ans:-N}" = y ]; then \
79
docker build -t nebula-database -f nebula/database/Dockerfile .; \
80
+ docker build -t nebula-pgweb -f nebula/database/pgweb/Dockerfile .; \
81
else \
82
echo "Skipping nebula-database docker build."; \
83
fi
nebula/database/pgweb/Dockerfile
@@ -0,0 +1 @@
1
+FROM sosedoff/pgweb
0 commit comments