On 17/02/2020 19:56, Daniel Walsh wrote:
On 2/17/20 2:49 PM, Simon Colston wrote:
Fedora 31 Workstation
I am running mysql in a container using podman. After some experimenting I got it running with this command:
podman run --detach --userns=keep-id \ --security-opt label=disable \ --name=mysql \ --env="MYSQL_ROOT_PASSWORD=mysql" --publish 3306:3306 \ --volume=/home/simon/servers/mysql/var/lib/mysql:/var/lib/mysql mysql:8.0 \
Change this line to
--volume=/home/simon/servers/mysql/var/lib/mysql:/var/lib/mysql:Z mysql:8.0 \
And you won't need to disable SELinux separation.
Thanks. I've put that in but still can't connect with mysql client.
Simon