AppsDatabasesmysqlUbuntu Mysql

Ubuntu MySQL Image

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.1'
 
services:
  db:
    image: ubuntu/mysql:8.0-22.04_beta
    restart: always
    environment:
      MYSQL_ROOT_PASSWORD: example
    # (this is just an example, not intended to be a production configuration)

Resources

Docker Hub: https://hub.docker.com/r/ubuntu/mysql

Configuration: See the Docker Hub page