-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker configurations to improve environment handling
- Adjust `.dockerignore` to include specific `.env` files instead of generic `.env*`. - Modify `docker-compose.[production|development].yml` to use optional environment variables for extra parameters. - Update `.env.sample` with new environment variables and the latest `PGADMIN_VERSION`. - Refactor `docker/pgadmin/servers.json` to simplify server naming and grouping.
- Loading branch information
1 parent
2a5f788
commit 13446ca
Showing
5 changed files
with
20 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ POSTGRES_DB=postgres | |
# Pgadmin4 | ||
# NOTE: if you modify POSTGRES_USER/PASSWORD/DB then auto-imported server will not match and you need to setup | ||
# your own with the modified values on the pgadmin website after first login. | ||
PGADMIN_VERSION=8.8 | ||
PGADMIN_VERSION=8.11 | ||
PGADMIN_DEFAULT_EMAIL=[email protected] | ||
PGADMIN_DEFAULT_PASSWORD=admin | ||
PGADMIN_LISTEN_PORT=5050 | ||
|
@@ -27,6 +27,12 @@ CHAIN_ID=poktroll | |
# ENDPOINT=http://proxy:26657 | ||
# Testnet | ||
ENDPOINT=https://testnet-validated-validator-rpc.poktroll.com | ||
# Check docs to see what else you can set here: | ||
# Ref: https://academy.subquery.network/indexer/run_publish/references.html#subql-cli | ||
SUBQUERY_NODE_EXTRA_PARAMS="--unfinalized-blocks=true" | ||
# Check docs to see what else you can set here: | ||
# Ref: https://academy.subquery.network/indexer/run_publish/references.html#subql-query | ||
SUBQUERY_GRAPHQL_EXTRA_PARAMS= | ||
|
||
# Subquery Graphql Engine | ||
SUBQUERY_GRAPHQL_ENGINE_VERSION=latest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"DefaultServers": { | ||
"Servers": { | ||
"1": { | ||
"Name": "[email protected]", | ||
"Group": "Localnet", | ||
"Name": "pocketdex", | ||
"Group": "Servers", | ||
"Host": "postgres", | ||
"Port": 5432, | ||
"MaintenanceDB": "postgres", | ||
|