mirror of
https://github.com/Tha14/uam-docker.git
synced 2024-11-24 22:03:01 +01:00
13 lines
428 B
Bash
Executable File
13 lines
428 B
Bash
Executable File
#!/bin/sh
|
|
cd /tmp
|
|
apt update && apt -yq install wget libglib2.0-0 ca-certificates dnsmasq wondershaper
|
|
update-ca-certificates
|
|
wondershaper eth0 $3 $4 &
|
|
wget https://update.u.is/downloads/uam/linux/uam-latest_amd64.deb
|
|
dpkg -i uam-latest_amd64.deb
|
|
cd /opt/uam/
|
|
echo "[net]" >> /root/.uam/uam.ini
|
|
container_ip="$(hostname -i)"
|
|
echo "listens=[${container_ip}]:$2" >> /root/.uam/uam.ini
|
|
./uam --pk $1 --http [0.0.0.0]:17099 --no-ui
|