diff --git a/Docker/aria2Pro/docker-compose.yml b/Docker/aria2Pro/docker-compose.yml new file mode 100644 index 0000000..ad6c78a --- /dev/null +++ b/Docker/aria2Pro/docker-compose.yml @@ -0,0 +1,26 @@ +version: '3' + +services: + aria2: + image: p3terx/aria2-pro + logging: + options: + max-size: 1m + ports: + - 6800:6800 + - 6888:6888 + - 6888:6888/udp + environment: + - RPC_SECRET=12346789 + volumes: + - ./data/aria2/config:/config + - ./data/temp/downloads:/downloads + restart: unless-stopped + networks: + nginx: + aliases: + - aria2Pro + +networks: + nginx: + external: true