docker-compose.yml 479 B

1234567891011121314151617
  1. version: '3'
  2. services:
  3. webui-aria2:
  4. image: registry.cn-hangzhou.aliyuncs.com/kennylee/webui-aria2
  5. container_name: webui-aria2
  6. volumes:
  7. - ${HOME}/downloads/:/data/
  8. - ./aria2/:/home/dummy/.aria2/
  9. ports:
  10. - "6800:6800"
  11. - "9100:8080"
  12. restart: unless-stopped
  13. logging:
  14. driver: 'json-file'
  15. options:
  16. max-size: '10m'
  17. max-file: '1'