make build
STEP 2 Enter in phpmyadmin in address: http://localhost:777 and create database with name admin
localhost:6033
CREATE TABLE news(
id SERIAL,
title TEXT,
content TEXT,
author VARCHAR(255)
);
CREATE TABLE author (
id SERIAL,
name varchar(255) DEFAULT NULL
);
STEP 5 Look at in browser link: http://localhost:83
chmod ugo+rwx log.txt
docker exec -it php-simple-admin bash