Access to mysql container from other container

前端 未结 3 1738
执笔经年
执笔经年 2020-12-15 18:29

I have setup docker container with mysql that expose 3306. I\'ve specified database user, database password and create a test db and give the privileges to new user.
In

3条回答
  •  再見小時候
    2020-12-15 18:53

    You need to link your docker containers together with --link flag in docker run command or using link feature in docker-compose. For instance:

    docker run -d -name app-container-name --link mysql-container-name app-image-name
    

    In this way docker will add the IP address of the mysql container into /etc/hosts file of your application container. For a complete document refer to: MySQL Docker Containers: Understanding the basics

提交回复
热议问题