File: docker-compose.yml

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