docker-compose.yml 244 B

1234567891011121314151617
  1. myweb:
  2. extends:
  3. file: common.yml
  4. service: web
  5. command: top
  6. links:
  7. - "mydb:db"
  8. environment:
  9. # leave FOO alone
  10. # override BAR
  11. BAR: "2"
  12. # add BAZ
  13. BAZ: "2"
  14. net: bridge
  15. mydb:
  16. image: busybox
  17. command: top