mirror of
https://github.com/jlengrand/exposed-imdb.git
synced 2026-03-10 08:11:18 +00:00
16 lines
262 B
YAML
16 lines
262 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
mysql-development:
|
|
image: mysql:8.0.19
|
|
environment:
|
|
MYSQL_ROOT_PASSWORD: aRootPassword
|
|
MYSQL_DATABASE: imdb
|
|
ports:
|
|
- "3308:3306"
|
|
volumes:
|
|
- my-datavolume:/var/lib/mysql
|
|
volumes:
|
|
my-datavolume:
|