Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 10 days 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-08T16:20:50.000Z (about 3 years ago)
- Last Synced: 2024-11-08T10:39:52.411Z (2 months 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
```