Atutor 2.2.1 - Docker Container
1 - Create a container from the image (b1tbyte/oswe:atutor) , and give it a name (atutorTest) & starting /bin/bash
docker run -it -p 127.0.0.1:80:80 --name atutorTest b1tbyte/oswe:atutor bashPort 80 is exposed in your host, so don't use it in production env.
2 - Then, you need to run apache2 & mysql
service apache2 startservice mysql start3 - Finally, you can access the application at the following path
http://127.0.0.1/atutor/login.phpCredentials :
atutor login creds :
user : teacher
pass : teacherall other creds (mysql & others) are
user : root
pass : root Last updated
Was this helpful?