Guest User

Untitled

a guest
Aug 24th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. version: '3'
  2. services:
  3. my_sql_percona:
  4. image: percona:latest
  5. container_name: my_sql_percona
  6. environment:
  7. MYSQL_ROOT_PASSWORD: password
  8. MYSQL_DATABASE: tms
  9. ports:
  10. - "3306:3306"
  11. healthcheck:
  12. test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
  13. timeout: 20s
  14. retries: 10
  15. migration:
  16. command: ["./wait-for-it.sh", "mysql:3306", "--", "migrate", "-url=jdbc:mysql://my_sql_percona:3306/tms?useUnicode=true&characterEncoding=utf8&useSSL=false", "-user=root", "-password=password"]
Add Comment
Please, Sign In to add comment