/alist-proxy-docker

alist-proxy docker镜像

Primary LanguageDockerfileGNU General Public License v3.0GPL-3.0

dockeri.co

Koyeb

Deploy to Koyeb

render

Deploy to Render

Docker

Docker-cli

docker run -d --restart=unless-stopped -e ADDRESS='<alist地址>' -e TOKEN='<token>' -p 5243:5243 --name="alist-proxy" reth01/alist-proxy:latest

Docker-compose

version: '3.3'
services:
    alist-proxy:
        image: 'reth01/alist-proxy:latest'
        container_name: alist-proxy
        ports:
            - '5243:5243'
        environment:
            - ADDRESS=https://alist.xxx.com
            - TOKEN=token      
        restart: unless-stopped