https://github.com/ef2k/vagrant-docker-dev-js
A frontend development environment using Docker as a Vagrant provider.
https://github.com/ef2k/vagrant-docker-dev-js
Last synced: 4 months ago
JSON representation
A frontend development environment using Docker as a Vagrant provider.
- Host: GitHub
- URL: https://github.com/ef2k/vagrant-docker-dev-js
- Owner: ef2k
- Created: 2020-12-05T20:13:58.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-08T16:20:50.000Z (over 4 years ago)
- Last Synced: 2025-06-01T07:52:19.911Z (about 1 year ago)
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This configuration runs docker as provider for vagrant. The environment is setup
with Ubuntu 20.04 LTS, git, and node (via nvm). See provision.sh.
NOTE: `.gitconfig` and `ssh` keys are synced from host to guest.
Developed on an M1 Macbook Pro.
## Pre-reqs
Install:
- docker (https://www.docker.com/products/docker-desktop)
macos: Download and install
- vagrant (https://www.vagrantup.com)
macos: `brew install vagrant`
## Usage
```
vagrant up
vagrant ssh
```
or use `make`, which will run the above commands by default.
## Recreating the env
This task will stop the container, delete the container and the image - giving
a clean starting point.
```
make clean
```