-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello-cube.pmx
46 lines (46 loc) · 1.1 KB
/
hello-cube.pmx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
name: hello-cube
description: An example app built from the cube template and a simple hello world
node.js docker image.
keywords: ''
type: Default
documentation: See http://xn.pinkhamster.net/blog/tech/building-multi-container-apps-with-panamax.html
images:
- name: dockerfile_mongodb_latest
source: dockerfile/mongodb:latest
category: Database
type: Default
command: mongod --smallfiles
- name: cwarden_cube-collector
source: cwarden/cube-collector:latest
category: Apps
type: Default
ports:
- host_port: '1080'
container_port: '1080'
proto: TCP
links:
- service: dockerfile_mongodb_latest
alias: mongodb
- name: cwarden_cube-evaluator
source: cwarden/cube-evaluator:latest
category: Apps
type: Default
ports:
- host_port: '1081'
container_port: '1080'
proto: TCP
links:
- service: dockerfile_mongodb_latest
alias: mongodb
- name: cwarden_hello-cube
source: cwarden/hello-cube:latest
category: Apps
type: Default
ports:
- host_port: '8080'
container_port: '8080'
proto: TCP
links:
- service: cwarden_cube-collector
alias: cube-collector