docker-compose.yml 244 B

123456789101112131415
  1. version: '2'
  2. services:
  3. nginx:
  4. image: "chendeben/zeronet"
  5. build:
  6. context: .
  7. args:
  8. - "ENABLE_TOR=true"
  9. volumes:
  10. - ./data:/root/data
  11. ports:
  12. - 15441:15441
  13. - 43110:43110
  14. restart: always