<h2>Video demonstrasi dan penjelasan: <ahref="https://drive.google.com/drive/u/1/folders/1L0w71TZnqa41XFDGfoZ3mM8ILZQeZeXE">https://drive.google.com/drive/u/1/folders/1L0w71TZnqa41XFDGfoZ3mM8ILZQeZeXE</a></h2>
<h3>5. Bash ke container untuk melakukan beberapa konfigurasi database: </h3>
<pre>
docker exec -u root -t -i some-app /bin/bash
</pre>
<h3>6. Login ke MySQL sebagai <b>root</b> dengan password <b>supersecurepwd</b></h3>
<pre>
mysql -u root -p
</pre>
<h3>7. Tambahkan tabel berikut, beserta user Admin:</h3>
<pre>
USE appdb;
CREATE TABLE `user_pjpb` (
`nama` VARCHAR(30),
`email` VARCHAR(30),
`hash` VARCHAR(70),
`public_key` VARCHAR(70),
`url` TEXT(70),
`id` INT(11) AUTO_INCREMENT,
PRIMARY KEY (`id`)
);
</pre>
<h3>7. Berikan akses <b>dbusr</b> ke <b>appdb</b>:</h3>
<pre>
GRANT ALL PRIVILEGES ON appdb.* TO 'dbusr'@'localhost' WITH GRANT OPTION;
exit;
</pre>
<h3>Aplikasi dapat diakses melalui <b>http://{ip-address}:8080/login.php</b>, untuk registrasi melalui <b>http://{ip-address}:8080/register.php</b></h3>