FROM ubuntu:22.04# Install necessary tools RUN apt-get update &&\
apt-get install -y software-properties-common &&\
add-apt-repository ppa:qbittorrent-team/qbittorrent-stable &&\
apt-get update &&\
apt-get install -y \
qbittorrent-nox \
tar \
gzip \
file \
jq \
curl \
sed \
aria2 \
locales \
locales-all &&\
rm -rf /var/lib/apt/lists/RUN locale-gen zh_CN.UTF-8ENVLANG=zh_CN.UTF-8 \
LANGUAGE=zh_CN:zh \
LC_ALL=zh_CN.UTF-8# Set up a new user named "user" with user ID 1000 RUN useradd -m -u 1000 user # Switch to the "user" user USER user # Set home to the user's home directory ENVHOME=/home/user \ PATH=/home/user/.local/bin:$PATH# Set the working directory to the user's home directory WORKDIR $HOME/alist # Download the latest alist release using jq for robustness RUN curl -sL https://api.github.com/repos/alist-org/alist/releases/latest |\ jq -r '.assets[] | select(.name | test("linux-amd64.tar.gz$")) | .browser_download_url'|\ xargs curl -L | tar -zxvf - -C $HOME/alist # Set up the environment RUN chmod +x $HOME/alist/alist &&\ mkdir -p $HOME/alist/data # Create data/config.json file with database configuration RUNecho'{\
"force": false,\
"address": "0.0.0.0",\
"port": 5244,\
"scheme": {\
"https": false,\
"cert_file": "",\
"key_file": ""\
},\
"cache": {\
"expiration": 60,\
"cleanup_interval": 120\
},\
"database": {\
"type": "mysql",\
"host": "ENV_MYSQL_HOST",\
"port": ENV_MYSQL_PORT,\
"user": "ENV_MYSQL_USER",\
"password": "ENV_MYSQL_PASSWORD",\
"name": "ENV_MYSQL_DATABASE"\
}\
}' > $HOME/alist/data/config.json # Create a startup script that runs Alist and Aria2 RUNecho'#!/bin/bash\n\
sed -i "s/ENV_MYSQL_HOST/${MYSQL_HOST:-localhost}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_PORT/${MYSQL_PORT:-3306}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_USER/${MYSQL_USER:-root}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_PASSWORD/${MYSQL_PASSWORD:-password}/g" $HOME/alist/data/config.json\n\
sed -i "s/ENV_MYSQL_DATABASE/${MYSQL_DATABASE:-alist}/g" $HOME/alist/data/config.json\n\
aria2c --enable-rpc --rpc-listen-all --rpc-allow-origin-all --rpc-listen-port=6800 --daemon\n\
qbittorrent-nox --webui-port=8080 &\n\
$HOME/alist/alist server --data $HOME/alist/data' > $HOME/alist/start.sh &&\ chmod +x $HOME/alist/start.sh # Set the command to run when the container starts CMD["/bin/bash","-c","/home/user/alist/start.sh"]# Expose the default Alist port EXPOSE 5244 6800 8080