Files
web2.0-frontend/docker-compose.yml
T
2018-08-08 20:28:01 +03:00

12 lines
436 B
YAML

version: '3'
services:
web-frontend:
build: .
image: git.sahkoinsinoorikilta.fi:4567/vtmk/web2.0-frontend
# Before you run this file for the first time, make sure
# you remove node_modules/ folders in your host machine
command: ["bash", "-c", "if test -d node_modules; then echo node_modules_exists; else cp -a /tmp/node_modules /code; fi && cd /code && npm install && npm start"]
ports:
- "3000:3000"