mirror of
https://github.com/eclipse/upm.git
synced 2025-03-15 04:57:30 +03:00
24 lines
429 B
YAML
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'
|