17 lines
390 B
YAML
17 lines
390 B
YAML
|
|
services:
|
|
flyway:
|
|
image: flyway/flyway
|
|
command: -url=jdbc:mysql://db -schemas=reservations -user=root -password=root -connectRetries=60 migrate
|
|
volumes:
|
|
- ../../db/migration:/flyway/sql
|
|
depends_on:
|
|
- db
|
|
db:
|
|
image: mariadb
|
|
restart: always
|
|
environment:
|
|
MARIADB_ROOT_PASSWORD: root
|
|
ports:
|
|
- "33306:3306"
|