File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ The following steps were tested on Ubuntu 20.04 but supposed to be valid for oth
49
49
` ` `
50
50
1. Edit ` terraform.tfvars` file. In our example, we will use Heroku demo database as a source:
51
51
` ` ` config
52
- dle_version_full = " 2.5.0 "
52
+ dle_version = " v3.0.1 "
53
53
54
54
aws_ami_name = " DBLABserver*"
55
55
Original file line number Diff line number Diff line change 193
193
# Fix ownership of the dblab directory
194
194
chown -R ubuntu.ubuntu /home/ubuntu/.dblab/
195
195
196
+ image_version=$( echo ${dle_version} | sed ' s/v*//' )
197
+
196
198
sudo docker run \
197
199
--name dblab_server \
198
200
--label dblab_control \
@@ -207,7 +209,7 @@ sudo docker run \
207
209
--env DOCKER_API_VERSION=1.39 \
208
210
--detach \
209
211
--restart on-failure \
210
- registry.gitlab.com/postgres-ai/database-lab/dblab-server:${dle_version}
212
+ registry.gitlab.com/postgres-ai/database-lab/dblab-server:$image_version
211
213
212
214
# ## Waiting for the Database Lab Engine initialization.
213
215
for i in {1..30000}; do
@@ -281,5 +283,5 @@ sudo docker run \
281
283
--volume /var/run/docker.sock:/var/run/docker.sock \
282
284
--volume /tmp/ci_checker:/tmp/ci_checker \
283
285
--volume $ci_checker_config_path :/home/dblab/configs:ro \
284
- registry.gitlab.com/postgres-ai/database-lab/dblab-ci-checker:${dle_version}
286
+ registry.gitlab.com/postgres-ai/database-lab/dblab-ci-checker:$image_version
285
287
Original file line number Diff line number Diff line change 1
- dle_version = " v3.0.0-rc.2 " # it is also possible to use branch name here (e.g., "master")
1
+ dle_version = " v3.0.1 " # it is also possible to use branch name here (e.g., "master")
2
2
joe_version = " 0.10.0"
3
3
4
4
aws_ami_name = " DBLABserver*"
You can’t perform that action at this time.
0 commit comments