You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
289 B
YAML
16 lines
289 B
YAML
5 years ago
|
version: "2"
|
||
|
services:
|
||
|
greenvironment:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: ./Dockerfile
|
||
|
user: "node"
|
||
|
working_dir: /home/node/green
|
||
|
environment:
|
||
|
- NODE_ENV=production
|
||
|
volumes:
|
||
|
- ./:/home/node/green
|
||
|
expose:
|
||
|
- "8080"
|
||
|
command: "npm start"
|