ทางมหาวิทยาลัยได้มีการเปลี่ยนเงื่อนไขจากการต่ออายุใบอนุญาตจากรายสัปดาห์เป็นรายเดือนแล้วแต่โค้ดไม่ได้มีการอัปเดต ดังนั้นไม่ควรใช้อย่างยิ่ง
The university has changed the license renewal terms from weekly to monthly, but the code hasn't been updated yet. So, it’s strongly advised not to use it.
(This script has been tested and run on-premises)
-
Install Docker
-
Create
.env
file
MY_USERNAME=your_username
MY_PASSWORD=your_password
-
Clone this repository or create your
Dockerfile
and usemain.go
file from this original source -
Build the image by using this command
docker build -t adobe-autorenew --build-arg ENV_FILE=.env .
-
Run the image!
docker run -d --restart=unless-stopped --env-file .env -e TZ=Asia/Bangkok adobe-autorenew
-d
is "detached mode." When you run a container in detached mode, it means the container runs in the background and doesn't block the terminal.
--restart=unless-stopped
always restarts the container unless the user explicitly stops it.