upm/docker-compose.yaml
2018-11-07 21:32:23 +00:00

24 lines
429 B
YAML

version: '3'
services:
app:
image: upm-site
build:
context: .
dockerfile: Dockerfile
args:
- http_proxy
- https_proxy
- no_proxy
environment:
- http_proxy
- https_proxy
- no_proxy
volumes:
- .:/usr/src/app
ports:
- 1234:1234
- 3001:3001
command: bash -c 'npm install && bundle install && gulp serve'