Guest User

Untitled

a guest
Dec 10th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. version: '3'
  2. services:
  3. flyway:
  4. image: boxfuse/flyway:5.2.1
  5. command: -url=jdbc:mysql://db -schemas=mvw -user=root -password=P@ssw0rd -connectRetries=60 migrate
  6. volumes:
  7. - ./sql:/flyway/sql
  8. container_name: mvw_flyway
  9. depends_on:
  10. - db
  11. db:
  12. image: mysql
  13. environment:
  14. - MYSQL_ROOT_PASSWORD=P@ssw0rd
  15. command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
  16. ports:
  17. - 3306:3306
  18. container_name: mvw_db
Add Comment
Please, Sign In to add comment