Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. version: "3.4"
  2.  
  3. services:
  4. heimdall:
  5. image: linuxserver/heimdall
  6. container_name: heimdall
  7. environment:
  8. - PUID=1000
  9. - PGID=1000
  10. - TZ=America/Thunder_Bay
  11. volumes:
  12. - heimdall_data:/config
  13. # - type: volume
  14. # source: heimdall_data
  15. # target: /config
  16. ports:
  17. - 80:80
  18. - 443:443
  19. restart: unless-stopped
  20.  
  21. volumes:
  22. heimdall_data:
  23. driver: cifs
  24. driver_opts:
  25. share: 192.168.1.5/docker/heimdall_data
  26. username: docker
  27. password: docker
  28. cifsopts: vers=2.0
  29. fileMode: 777
  30. dirMode: 777
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement