File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ sed -ri 's/^(\s*)(host:.*$)/\1host: ""/' ~/.dblab/server_test.yml
4040sed -ri ' s/^(\s*)(port: 2345$)/\1port: 12345/' ~ /.dblab/server_test.yml
4141sed -ri ' s/^(\s*)(debug:.*$)/\1debug: true/' ~ /.dblab/server_test.yml
4242sed -ri ' s/^(\s*)(pool:.*$)/\1pool: "test_pool"/' ~ /.dblab/server_test.yml
43- sed -ri ' s/^(\s*)(pool:.*$)/\1pool: "test_pool"/' ~ /.dblab/server_test.yml
43+ # sed -ri 's/^(\s*)(pool:.*$)/\1pool: "test_pool"/' ~/.dblab/server_test.yml
44+ sed -ri ' s/^(\s*)(pgDataSubdir:.*$)/\1pgDataSubdir: "\/"/' ~ /.dblab/server_test.yml
4445
4546sudo docker run \
4647 --detach \
@@ -65,3 +66,9 @@ dblab --version
6566dblab init --url http://localhost:12345 --token secret_token --environment-id test
6667dblab instance status
6768
69+ # ## Step ?. Create clone and connect to it
70+ dblab clone create --username testuser --password testuser --id testclone
71+ dblab clone list
72+ export PGPASSWORD=testuser
73+ psql " host=localhost port=6000 user=testuser dbname=test" -c ' \l'
74+
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ curl --version || sudo apt-get update && sudo apt-get install -y \
77 curl \
88 gnupg-agent \
99 software-properties-common \
10- curl
10+ curl \
11+ postgresql-client
1112
1213# ZFS
1314curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
You can’t perform that action at this time.
0 commit comments