fye
fye
Do you mean this: [root@localhost mysql]# docker start confluence-mysql confluence-mysql [root@localhost mysql]# docker logs -tf confluence-mysql 2015-01-13T09:12:12.216443258Z Installing database... 2015-01-13T09:12:12.439014228Z Starting MySQL server... 2015-01-13T09:12:12.446440769Z Waiting for database server to accept...
sorry, I misunderstand. This is my command: mkdir -p /opt/mysql/data2 sudo chcon -Rt svirt_sandbox_file_t /opt/mysql/data2 docker run --name confluence-mysql2 -d \ -p 3307:3306 \ -e 'DB_USER=avatar' -e 'DB_PASS=avatar' -e 'DB_NAME=confluence,jira'...
one more descripton: /opt/mysql/data2 directory is the first I created by the following commands: ``` mkdir -p /opt/mysql/data2 sudo chcon -Rt svirt_sandbox_file_t /opt/mysql/data2 docker run --name confluence-mysql -d \ -p...
The attach is my docker container list: 
@sameersbn , I found my problems. I use the following command, that is ok: ``` docker run --name confluence-mysql2 -d \ -p 3307:3306 \ -v /opt/mysql/data2:/var/lib/mysql sameersbn/mysql:latest ``` ``` docker...
@sameersbn , I don't know why, I removed the following args: ``` -e 'DB_USER=ezview' -e 'DB_PASS=ezview' -e 'DB_NAME=confluence,jira' ```
And i followed your method, include disabled selinux with setenforce 0, that's not ok, same error like before. I removed the above args, then worked fine.
@sameersbn , Yes, I had update the image, also the same error.