Skip to content

Commit

Permalink
vagrant disksize plugin and script
Browse files Browse the repository at this point in the history
release commands for native host
docker add user to docker group
  • Loading branch information
joshjdevl committed Jul 7, 2018
1 parent 50eb851 commit 6121378
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Vagrant.configure(2) do |config|
# Every Vagrant development environment requires a box. You can search for
# boxes at https://atlas.hashicorp.com/search.
config.vm.box = "ubuntu/xenial64"
config.disksize.size = '20GB'

# Disable automatic box update checking. If you disable this, then
# boxes will only be checked for updates when the user runs
Expand Down
7 changes: 7 additions & 0 deletions commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ export GPG_PASSPHRASE=
gradle build
gradle uploadArchives closeAndPromoteRepository -Psigning.password=${GPG_PASSPHRASE}

#build host native lib
./build-libsodium-host.sh
pushd jni
./jnilib.sh
popd
sudo cp ./libsodium/libsodium-host/lib/libsodium.so /usr/lib

mvn clean install -P release-sign-artifacts
mvn clean deploy -P release-sign-artifacts --settings settings.xml

Expand Down
2 changes: 1 addition & 1 deletion install_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ sudo apt-get install -y -qq docker-ce
sudo curl -L https://github.com/docker/compose/releases/download/1.16.1/docker-compose-`uname -s`-`uname -m` -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose


sudo usermod -aG docker $USER
1 change: 1 addition & 0 deletions plugins-vagrant.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vagrant plugin install vagrant-disksize

0 comments on commit 6121378

Please sign in to comment.