Guest User

Untitled

a guest
Jan 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. FROM centos:7
  2. RUN... (rest of file to create common stuff used by multiple child images)
  3.  
  4. FROM parent
  5. RUN...
  6.  
  7. version: '3.3'
  8. services:
  9. my-service:
  10. image: child-one
  11. build:
  12. dockerfile: containers/child-one/Dockerfile
  13. context: .
Add Comment
Please, Sign In to add comment