We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd2586 commit 7cb6b73Copy full SHA for 7cb6b73
.gitpod.yml
@@ -6,13 +6,13 @@ tasks:
6
command: |
7
gp open README.md
8
export PUBLIC_IP=127.0.0.1
9
- docker-compose up && gp sync-done run-PostgreSQL
+ docker-compose up
10
- name: Install PGCLI
11
init: |
12
pip install -U pgcli
13
- gp sync-await run-PostgreSQL
14
command:
15
- pgcli 'postgres://demo:abc123!@localhost:5432/demodb'
+ # run postgresql client pgcli and connect to demodb as user demo; wait 30 seconds to be sure that database container is running
+ sleep 30s && pgcli 'postgres://demo:abc123!@localhost:5432/demodb'
16
17
ports:
18
0 commit comments