Skip to content

Commit

Permalink
Update docker-gen to 0.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
William-Yeh committed Mar 11, 2015
1 parent 30c6c11 commit 7f7f028
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ I also install some handy tools for Docker.
Use the following public box names (all available from [Vagrant Cloud](https://vagrantcloud.com/)):


- Ubuntu 14.04.1 LTS ("Trusty") x64:
- Ubuntu 14.04.2 LTS ("Trusty") x64:

- [`williamyeh/ubuntu-trusty64-docker`](https://vagrantcloud.com/williamyeh/ubuntu-trusty64-docker), basically [ubuntu/trusty64](https://vagrantcloud.com/ubuntu/boxes/trusty64) + Docker - Chef - Puppet

Expand Down Expand Up @@ -60,7 +60,7 @@ Use the following public box names (all available from [Vagrant Cloud](https://v

## Build these boxes yourself

Currently, Vagrant Cloud doesn't have an *automated build* mechanism as in the [Docker Hub](https://hub.docker.com/) ecosystem. You might not trust those boxes I've put into Vagrant Cloud; you might want more up-to-date packages in the box.
Currently, Atlas (was: Vagrant Cloud) doesn't have an *automated build* mechanism as in the [Docker Hub](https://hub.docker.com/) ecosystem. You might not trust those boxes I've put into Atlas; you might want more up-to-date packages in the box before I've update them.

OK, you can build these boxes as follows.

Expand Down
3 changes: 3 additions & 0 deletions debian-jessie/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "cpppo-jessie-64"
config.vm.box_url = "http://box.hardconsulting.com/jessie64-virtualbox.box"

# avoid possible request "[email protected]'s password:" when "up" and "ssh"
config.ssh.password = "vagrant"

config.vm.provision :shell, :path => "vagrant-provision.sh"

end
2 changes: 1 addition & 1 deletion debian-jessie/vagrant-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export LANGUAGE=en_US.UTF-8
readonly COMPOSE_VERSION=1.1.0
readonly MACHINE_VERSION=0.1.0

readonly DOCKERGEN_VERSION=0.3.7
readonly DOCKERGEN_VERSION=0.3.8
readonly DOCKERGEN_TARBALL=docker-gen-linux-amd64-$DOCKERGEN_VERSION.tar.gz

readonly DOCKERIZE_VERSION=v0.0.2
Expand Down
3 changes: 3 additions & 0 deletions insecure-registry/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty64"

# avoid possible request "[email protected]'s password:" when "up" and "ssh"
config.ssh.password = "vagrant"

config.vm.provision :shell, :path => "../ubuntu-trusty/vagrant-provision.sh"
config.vm.provision :shell, :path => "vagrant-provision.sh"

Expand Down
3 changes: 3 additions & 0 deletions ubuntu-trusty/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Every Vagrant virtual environment requires a box to build off of.
config.vm.box = "ubuntu/trusty64"

# avoid possible request "[email protected]'s password:" when "up" and "ssh"
config.ssh.password = "vagrant"

config.vm.provision :shell, :path => "vagrant-provision.sh"

end
2 changes: 1 addition & 1 deletion ubuntu-trusty/vagrant-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export LANGUAGE=en_US.UTF-8
readonly COMPOSE_VERSION=1.1.0
readonly MACHINE_VERSION=0.1.0

readonly DOCKERGEN_VERSION=0.3.7
readonly DOCKERGEN_VERSION=0.3.8
readonly DOCKERGEN_TARBALL=docker-gen-linux-amd64-$DOCKERGEN_VERSION.tar.gz

readonly DOCKERIZE_VERSION=v0.0.2
Expand Down

0 comments on commit 7f7f028

Please sign in to comment.