myesn

myEsn2E9

hi
github

Docker Compose: MySQL 8.0.32

version: '3'

services:
  db:
    image: mysql:8.0.32
    container_name: mysql
    restart: always
    command: --default-authentication-plugin=mysql_native_password --tls-version='' # Use classic MySQL authentication plugin and disable SSL/TLS
    environment:
      MYSQL_DATABASE: strapi
      MYSQL_ROOT_PASSWORD: P@ssw0rd
    volumes:
      - ./mysql_data:/var/lib/mysql
    ports:
      - '3306:3306'
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.