Last active
February 28, 2018 13:47
-
-
Save vincenzo/7e3a40c5c3d955f66b90b74b436d6684 to your computer and use it in GitHub Desktop.
Docker Compose Links and Lando
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: zoo | |
proxy: | |
panda: | |
- panda.lndo.site | |
puma: | |
- puma.lndo.site | |
rhino: | |
- rhino.lndo.site | |
- '*.rhino.lndo.site' | |
services: | |
panda: | |
type: node:8.9 | |
build: | |
- "cd /app/panda && npm install" | |
command: cd /app/panda && npm run dev | |
overrides: | |
services: | |
environment: | |
PORT: 80 | |
puma: | |
type: node:8.9 | |
build: | |
- "cd /app/puma && npm install" | |
command: cd /app/puma && npm run dev | |
overrides: | |
services: | |
environment: | |
PORT: 80 | |
links: | |
- "panda:panda.lndo.site" | |
rhino: | |
type: node:8.9 | |
build: | |
- "cd /app/rhino && npm install" | |
command: cd /app/rhino && npm run dev | |
overrides: | |
services: | |
environment: | |
PORT: 80 | |
links: | |
- "panda:panda.lndo.site" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment