initial
This commit is contained in:
16
environment/dev/docker-compose.yaml
Normal file
16
environment/dev/docker-compose.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
|
||||
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"
|
||||
Reference in New Issue
Block a user