1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2026-05-22 10:15:16 +02:00

Use pre-built images from Docker Hub when the container definition has not changed.

Downloading an image is quite a bit faster than building a new image from scratch and saves minutes per test run in CI.
This commit is contained in:
David Steele
2018-07-21 17:02:42 -04:00
parent 8568622a6f
commit 1862630629
7 changed files with 272 additions and 126 deletions
+2 -3
View File
@@ -5,10 +5,10 @@ Vagrant.configure(2) do |config|
end
config.vm.box = "ubuntu/bionic64"
config.vm.box_version = "20180531.0.0"
config.vm.box_version = "20180719.0.0"
# vagrant plugin install vagrant-disksize
# config.disksize.size = '64GB'
config.disksize.size = '64GB'
config.vm.provider :virtualbox do |vb|
vb.name = "pgbackrest-test"
@@ -91,7 +91,6 @@ Vagrant.configure(2) do |config|
#---------------------------------------------------------------------------------------------------------------------------
echo 'Create Postgres Group & pgBackRest User' && date
groupadd -g5000 postgres
adduser --uid=5001 --ingroup=vagrant --disabled-password --gecos "" pgbackrest
#---------------------------------------------------------------------------------------------------------------------------