Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2020
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. version: '2'
  2. services:
  3. hydrusclient:
  4. image: suika/hydrus:latest
  5. container_name: hydrusclient
  6. restart: unless-stopped
  7. environment:
  8. - UID=1000
  9. - GID=1000
  10. volumes:
  11. - /srv/dev-disk-by-label-Files/database/Hydrus/db:/opt/hydrus/db
  12. tmpfs:
  13. - /tmp #optional for SPEEEEEEEEEEEEEEEEEEEEEEEEED and less disk access
  14. ports:
  15. - 5800:5800 #noVNC
  16. - 5900:5900 #VNC
  17. - 45868:45868 #Booru
  18. - 45869:45869 #API
  19. hydrusclient-ipfs:
  20. image: ipfs/go-ipfs
  21. container_name: hydrusclient-ipfs
  22. restart: unless-stopped
  23. volumes:
  24. - /srv/dev-disk-by-label-Files/database/Hydrus/ipfs:/data/ipfs
  25. - /srv/dev-disk-by-label-Files/database/Hydrus/db/client_files:/data/client_files:ro
  26. ports:
  27. - 4001:4001 # READ
  28. - 5001:5001 # THE
  29. - 8070:8070 # IPFS
  30. - 8081:8081 # DOCS
  31. hydrus-web:
  32. image: suika/hydrus-web:latest
  33. container_name: hydrus-web
  34. restart: always
  35. ports:
  36. - 8090:80 # READ
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement