https://github.com/gbevan/vagrant-ubuntu-dev
Docker image of Ubuntu with build-essentials etc for development. For use with Vagrant as a package build environment for the PasTmon project.
https://github.com/gbevan/vagrant-ubuntu-dev
Last synced: 3 months ago
JSON representation
Docker image of Ubuntu with build-essentials etc for development. For use with Vagrant as a package build environment for the PasTmon project.
- Host: GitHub
- URL: https://github.com/gbevan/vagrant-ubuntu-dev
- Owner: gbevan
- License: mit
- Created: 2015-03-01T11:34:45.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-04-21T12:50:01.000Z (about 2 years ago)
- Last Synced: 2025-08-31T20:52:00.450Z (10 months ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
gbevan/vagrant-ubuntu-dev
-------------------------
Docker image of Ubuntu with build-essentials etc for development.
```
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "ubuntu-dev", primary: true do |ubuntu|
ubuntu.vm.synced_folder "./", "/home/vagrant/src"
ubuntu.vm.provider "docker" do |d|
d.image = "gbevan/vagrant-ubuntu-dev:latest"
d.has_ssh = true
end
end
end
```