Remove quotes that shouldn't be there.

This commit is contained in:
Dave Page 2019-09-11 16:00:46 -04:00
parent 6a931588aa
commit 31653aef70

View File

@ -170,10 +170,10 @@ Run a TLS secured container using a shared config/storage directory in
docker pull dpage/pgadmin4
docker run -p 443:443 \
-v '/private/var/lib/pgadmin:/var/lib/pgadmin' \
-v '/path/to/certificate.cert:/certs/server.cert' \
-v '/path/to/certificate.key:/certs/server.key' \
-v '/tmp/servers.json:/servers.json' \
-v /private/var/lib/pgadmin:/var/lib/pgadmin \
-v /path/to/certificate.cert:/certs/server.cert \
-v /path/to/certificate.key:/certs/server.key \
-v /tmp/servers.json:/servers.json \
-e 'PGADMIN_DEFAULT_EMAIL=user@domain.com' \
-e 'PGADMIN_DEFAULT_PASSWORD=SuperSecret' \
-e 'PGADMIN_ENABLE_TLS=True' \