Demoexams: различия между версиями
Перейти к навигации
Перейти к поиску
Vovan (обсуждение | вклад) (Новая страница: «==Machine Learning== <pre> #!/bin/bash useradd --create-home --shell /bin/bash -p exam1 exam1 useradd --create-home --shell /bin/bash -p exam2 exam2 userdel -r -…») |
Vovan (обсуждение | вклад) (→fix script) |
||
(не показана 1 промежуточная версия этого же участника) | |||
Строка 1: | Строка 1: | ||
==Machine Learning== | ==Machine Learning== | ||
+ | ===fix script=== | ||
<pre> | <pre> | ||
#!/bin/bash | #!/bin/bash | ||
Строка 22: | Строка 23: | ||
EOF | EOF | ||
− | + | bash /root/run-demoexam-1.sh | |
+ | bash /root/run-demoexam-2.sh | ||
</pre> | </pre> | ||
+ | |||
+ | reboot | ||
+ | |||
+ | ===URLs=== | ||
+ | ====exam1==== | ||
+ | http://localhost:8081/?token=nntc | ||
+ | |||
+ | ====exam2==== | ||
+ | http://localhost:8082/?token=nntc |
Текущая версия на 13:38, 14 декабря 2020
Machine Learning
fix script
#!/bin/bash useradd --create-home --shell /bin/bash -p exam1 exam1 useradd --create-home --shell /bin/bash -p exam2 exam2 userdel -r -f exam systemctl enable docker docker stop demoexam_container docker rm demoexam_container cat << EOF > /root/run-demoexam-1.sh #!/bin/bash docker run -it -e PORT=8081 -d --restart=always --name=demoexam_container_1 --network host nntc_jpnb /home/jovyan/.config/run.sh EOF cat << EOF > /root/run-demoexam-2.sh #!/bin/bash docker run -it -e PORT=8082 -d --restart=always --name=demoexam_container_2 --network host nntc_jpnb /home/jovyan/.config/run.sh EOF bash /root/run-demoexam-1.sh bash /root/run-demoexam-2.sh
reboot
URLs
exam1
http://localhost:8081/?token=nntc
exam2
http://localhost:8082/?token=nntc