cage 0.3.6

Develop multi-pod docker-compose apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# An example frontend web pod using Node.js and yarn.

version: "2"

services:
  web:
    # The name of the Docker image we build.
    image: "faraday/node_hello"
    # For this project, we keep our source code directly in the main
    # project tree, and not in an external git repository.
    build: "../src/node_hello"
    ports:
    - "3000:3000"