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 bash
  • Port 80 is exposed in your host, so don't use it in production env.

2 - Then, you need to run apache2 & mysql

service apache2 start
service mysql start

3 - Finally, you can access the application at the following path

http://127.0.0.1/atutor/login.php

Credentials :

atutor login creds :

user : teacher
pass : teacher

all other creds (mysql & others) are

user : root
pass : root 

Last updated

Was this helpful?