Database()

Database

Usage

cat > docker-compose.yml <<-'EOF'
# https://hub.docker.com/_/mysql
# Port: 6880
version: "3"

services:
  aria2:
    image: p3terx/aria2-pro
    environment:
      - PUID=1000
      - PGID=1000
      - RPC_SECRET=password
      - RPC_PORT=6800
      - LISTEN_PORT=6888
      - DISK_CACHE=64M
      - IPV6_MODE=true
      - UPDATE_TRACKERS=true
      - SPECIAL_MODE=move
    network_mode: host
    restart: always
    volumes:
      - ./aria2/config/:/config/
      - /share/Public/Downloads/:/downloads/

  AriaNg:
    image: p3terx/ariang
    command: --port 6880 --ipv6
    network_mode: host
    restart: always

EOF
————————

Database

Usage

cat > docker-compose.yml <<-'EOF'
# https://hub.docker.com/_/mysql
# Port: 6880
version: "3"

services:
  aria2:
    image: p3terx/aria2-pro
    environment:
      - PUID=1000
      - PGID=1000
      - RPC_SECRET=password
      - RPC_PORT=6800
      - LISTEN_PORT=6888
      - DISK_CACHE=64M
      - IPV6_MODE=true
      - UPDATE_TRACKERS=true
      - SPECIAL_MODE=move
    network_mode: host
    restart: always
    volumes:
      - ./aria2/config/:/config/
      - /share/Public/Downloads/:/downloads/

  AriaNg:
    image: p3terx/ariang
    command: --port 6880 --ipv6
    network_mode: host
    restart: always

EOF