Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

Commit f9cf94e

Browse files
author
Hans Kristian Flaatten
committed
Replace Vagrant environment with Docker Compose
1 parent efd2192 commit f9cf94e

File tree

2 files changed

+11
-96
lines changed

2 files changed

+11
-96
lines changed

Vagrantfile

Lines changed: 0 additions & 96 deletions
This file was deleted.

docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
dev:
2+
image: node:0.10-slim
3+
working_dir: /usr/src/app
4+
volumes:
5+
- ".:/usr/src/app"
6+
command: "npm run watch"
7+
environment:
8+
- NODE_ENV=development
9+
- NPM_CONFIG_LOGLEVEL=info
10+
- NPM_PACKAGE_CONFIG_UNSAFE_PERM=true
11+
- NPM_CONFIG_UNSAFE_PERM=true

0 commit comments

Comments
 (0)