hqt

Untitled

hqt
Apr 13th, 2018
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. version: '3'
  2. services:
  3. app:
  4. container_name: fraud_app
  5. build:
  6. context: ..
  7. dockerfile: docker/Dockerfile
  8. ports:
  9. - "8888:8888"
  10. volumes:
  11. - ".:/webapp"
  12. env_file: .development.env
  13. depends_on:
  14. - mariadb
  15. links:
  16. - mariadb
  17. mariadb:
  18. image: mariadb
  19. environment:
  20. - MYSQL_USER=admin
  21. - MYSQL_PASSWORD=password
  22. - MYSQL_DATABASE=fraud_score
  23. - MYSQL_ALLOW_EMPTY_PASSWORD=yes
  24. command: "--character-set-server=utf8mb4"
Advertisement
Add Comment
Please, Sign In to add comment