Skip to content

nishidayuya/docker-vagrant-ubuntu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-vagrant-ubuntu

A Ubuntu Docker image for Vagrant Docker provider.

This image is based on official Ubuntu image and includes minimum Vagrant box features.

Supported tags and respective Dockerfile links

Issues and pull-requests are available on GitHub repository.

Usage

Write Vagrantfile as following:

# -*- mode: ruby -*-
# vi: set ft=ruby :

ENV["VAGRANT_DEFAULT_PROVIDER"] ||= "docker"
Vagrant.configure(2) do |config|
  config.vm.provider(:docker) do |d|
    d.image = "nishidayuya/docker-vagrant-ubuntu:xenial"
    d.has_ssh = true
  end
end

Enjoy vagrant up, vagrant ssh and so on!

$ vagrant up
Bringing machine 'default' up with 'docker' provider...
==> default: Creating the container...
    default:   Name: try_default_1466614761
    default:  Image: nishidayuya/docker-vagrant-ubuntu:xenial
    default: Volume: /home/yuya/try:/vagrant
    default:   Port: 127.0.0.1:2222:22
    default:
    default: Container created: 1269dc230f256869
==> default: Starting container...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: SSH address: 172.17.0.3:22
    default: SSH username: vagrant
    default: SSH auth method: private key
    default:
    default: Vagrant insecure key detected. Vagrant will automatically replace
    default: this with a newly generated keypair for better security.
    default:
    default: Inserting generated public key within guest...
    default: Removing insecure key from the guest if it's present...
    default: Key inserted! Disconnecting and reconnecting using new SSH key...
==> default: Machine booted and ready!
$ vagrant ssh
Welcome to Ubuntu 16.04 LTS (GNU/Linux 3.16.0-4-amd64 x86_64)

 * Documentation:  https://help.ubuntu.com/
vagrant@1269dc230f25:~$ sudo apt-get update
...

About

A Ubuntu Docker image for Vagrant Docker provider.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published