Httpd server not work for me

i just follow this

Get the Devilbox

git clone https://github.com/cytopia/devilbox

Create docker-compose environment file

cd devilbox cp env-example .env

Edit your configuration

vim .env
i change
NEW_UID=0
NEW_GID=0
MYSQL_SERVER=mysql-5.7
MYSQL_ROOT_PASSWORD=123456

Start all container

docker-compose up httpd
i got error
[root@localhost devilbox]# docker-compose up httpd
devilbox_bind_1 is up-to-date
Starting devilbox_php_1 … done
Starting devilbox_httpd_1 … done
Attaching to devilbox_httpd_1
httpd_1 | [INFO] Debug level: 1
httpd_1 | [INFO] Runtime debug: 1
httpd_1 | [WARN] User with 0 already exists: root
httpd_1 | usermod: user root is currently used by process 1
httpd_1 | [INFO] Changing UID of root to 9876
devilbox_httpd_1 exited with code 8

wget http://127.0.0.1
Connecting to 127.0.0.1:80… failed: Connection refused.

any wrong i made

As you see at the end of docker-compose up httpd command something went wrong with starting up httpd container because at the end it states devilbox_httpd_1 exited with code 8

You need to troubleshoot it.

You should probably change this to something else than 0

thanks for all,
NEW_UID=1001
NEW_GID=1002
change this in .env and everything looks ok