Advertisement
Guest User

docker-compose.yml

a guest
Dec 9th, 2019
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. monerod:
  5. build:
  6. context: .
  7. dockerfile: Dockerfile
  8. args:
  9. BRANCH: v0.14.1.2
  10. DEBIAN_VERSION: "stable-20191014-slim"
  11. command: --testnet --data-dir /monero --non-interactive
  12. volumes:
  13. # /monero in container should eventually contain the contents of the folder .bitmonero
  14. - /media/work/web/Sloboda/shortex/xmrto/monero/monero:/monero
  15. networks:
  16. - microkube_default
  17. ports:
  18. - "28080:28080"
  19. - "28081:28081"
  20. environment:
  21. - USER_ID=1000
  22. - P2P_BIND_IP=0.0.0.0
  23. - P2P_BIND_PORT=28080
  24. - LOG_LEVEL=0
  25. - RPC_USER="user"
  26. - RPC_PASSWD="password"
  27. - RPC_BIND_IP=0.0.0.0
  28. - RPC_BIND_PORT=28081
  29. - USE_TORSOCKS=NO
  30. - USE_TOR=NO
  31. restart: unless-stopped
  32. logging:
  33. driver: "json-file"
  34. options:
  35. max-size: 10m
  36. max-file: "3"
  37.  
  38. networks:
  39. microkube_default:
  40. external: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement