Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedrofurtado/vagrant-ubuntu-workspace
My personal Ubuntu vagrant workspace with VirtualBox provider. Used only for development purposes.
https://github.com/pedrofurtado/vagrant-ubuntu-workspace
box docker docker-compose ubuntu vagrant vagrant-box vagrant-boxes
Last synced: 23 days ago
JSON representation
My personal Ubuntu vagrant workspace with VirtualBox provider. Used only for development purposes.
- Host: GitHub
- URL: https://github.com/pedrofurtado/vagrant-ubuntu-workspace
- Owner: pedrofurtado
- License: mit
- Created: 2021-09-13T16:46:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-05T02:19:51.000Z (about 2 months ago)
- Last Synced: 2024-10-23T13:53:42.098Z (27 days ago)
- Topics: box, docker, docker-compose, ubuntu, vagrant, vagrant-box, vagrant-boxes
- Homepage: https://app.vagrantup.com/pedrofurtado/boxes/vagrant-ubuntu-workspace
- Size: 125 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Vagrant ubuntu workspace
[![Vagrant Box](https://github.com/pedrofurtado/vagrant-ubuntu-workspace/actions/workflows/vagrant.yml/badge.svg)](https://github.com/pedrofurtado/vagrant-ubuntu-workspace/actions/workflows/vagrant.yml)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/pedrofurtado/vagrant-ubuntu-workspace)
[![license](https://img.shields.io/github/license/pedrofurtado/vagrant-ubuntu-workspace.svg)]()My personal Ubuntu vagrant workspace with VirtualBox provider.
Used only for development purposes.
## Platforms support
This workspace supports Windows as host.
## Installation
Install the following softwares in your PC:
- VirtualBox "6.1.34 r150636 (Qt5.6.2)" or newer
- Vagrant v2.2.19 or newer
- Ruby v2.7.4 or newerImportant note: You will need to run Vagrant as Administrator.
## Usage (example)
Vagrantfile
```ruby
Vagrant.configure('2') do |config|
config.vm.box = 'pedrofurtado/vagrant-ubuntu-workspace'
config.vagrant.plugins = ['vagrant-disksize'] # vagrant-disksize v0.1.3 or newer
config.disksize.size = '100GB'
config.vm.box_version = 'x.y.z'
config.vm.network 'forwarded_port', guest: 9999, host: 9999, id: 'portainer'
config.vm.network 'forwarded_port', guest: 9998, host: 9998, id: 'k8s_dashboard'
config.vm.network 'forwarded_port', guest: 1234, host: 1234, id: 'my_app'
config.vm.provider 'virtualbox' do |v|
v.memory = '8192'
v.cpus = '2'
v.customize ['setextradata', :id, 'VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root', '1']
v.customize ['modifyvm', :id, '--uartmode1', 'disconnected']
end
config.vm.provision 'shell', inline: <<-SHELL
# Your shell script here
SHELL
end
```CMD
```bash
vagrant up (run as Administrator)
```Enjoy!
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/pedrofurtado/vagrant-ubuntu-workspace. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/pedrofurtado/vagrant-ubuntu-workspace/blob/master/CODE_OF_CONDUCT.md).
## License
The repository is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
## Code of Conduct
Everyone interacting in the vagrant-ubuntu-workspace project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/pedrofurtado/vagrant-ubuntu-workspace/blob/master/CODE_OF_CONDUCT.md).