File: docker-compose.yml

package info (click to toggle)
aiomysql 0.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 896 kB
  • sloc: python: 6,841; makefile: 79
file content (11 lines) | stat: -rw-r--r-- 267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
mysql:
    image: mysql:8.4
    environment:
        - MYSQL_USER=aiomysql
        - MYSQL_PASSWORD=mypass
        - MYSQL_DATABASE=test_pymysql
        - MYSQL_ROOT_PASSWORD=mypass
    ports:
        - 3306:3306
    volumes:
        - /tmp/aiomysql:/var/run/mysqld/