go-rel/gin-example

View on GitHub
docker-compose.yml

Summary

Maintainability
Test Coverage
version: '3'

services:
  mysql:
    image: 'mysql:latest'
    command: --default-authentication-plugin=mysql_native_password
    ports:
      - ${MYSQL_PORT}:3306
    environment:
      MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
      MYSQL_DATABASE: todos