mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-09 00:00:01 +01:00
33 lines
559 B
YAML
33 lines
559 B
YAML
nginx:
|
|
image: nginx
|
|
volumes:
|
|
- nginx.default.conf:/etc/nginx/conf.d/default.conf
|
|
links:
|
|
- orion
|
|
- ember
|
|
ports:
|
|
- "80:80"
|
|
|
|
ember:
|
|
image: danlynn/ember-cli
|
|
volumes:
|
|
- .:/myapp
|
|
command: server --watcher polling
|
|
|
|
mongo:
|
|
image: mongo:2.6
|
|
command: --smallfiles --nojournal --dbpath=/tmp/
|
|
|
|
orion:
|
|
image: fiware/orion
|
|
links:
|
|
- mongo
|
|
command: -dbhost mongo
|
|
|
|
playback:
|
|
build: ../LabMashup-sselab/FICBPlaybackSource
|
|
volumes:
|
|
- /share:/share
|
|
links:
|
|
- orion
|
|
command: orion:1026 m1_S1_ElectricalGrid_data.txt
|