Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. version: "3"
  2.  
  3. services:
  4. example:
  5. build:
  6. context: .
  7. dockerfile: dockerfile
  8. args:
  9. name: example
  10. from: haskell:latest
  11. UID: ${UID:-1000}
  12. GID: ${GID:-1000}
  13. command: stack build
  14. volumes:
  15. - ./:/usr/src/example/
  16. network_mode: bridge
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement