Files
fn-serverless/examples/caddy-lb/docker-compose.yml
James Jeffrey c7f3066c75 Update references remove refs to treeder oracle funcy (#376)
* Remove lots of refs to iron and funcy oracle etc..

* more ref replacements

* Replacing more refs. Treeder

* Use Fn not FN
2017-09-29 16:22:15 -07:00

23 lines
457 B
YAML

functions01:
restart: always
image: fnproject/functions
functions02:
restart: always
image: fnproject/functions
functions03:
restart: always
image: fnproject/functions
caddy:
image: abiosoft/caddy
volumes:
- ./Caddyfile:/etc/Caddyfile
ports:
- "9000:9000"
environment:
- LB_HOST01=functions01:8080
- LB_HOST02=functions02:8080
- LB_HOST03=functions03:8080
links:
- functions01
- functions02
- functions03