Advertisement
Guest User

Untitled

a guest
Oct 4th, 2019
590
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.7'
  2. services:
  3. db:
  4. image: mysql:8.0.17
  5. environment:
  6. MYSQL_ROOT_PASSWORD: 'yesyesnono'
  7. command: --default-authentication-plugin=mysql_native_password
  8. restart: always
  9. server:
  10. image: testing:1.0
  11. build:
  12. context: .
  13. dockerfile: Dockerfile
  14. environment:
  15. DB_HOST: db
  16. DB_PORT: '3306'
  17. DB_USER: 'root'
  18. DB_PASSWORD: 'yesyesnono'
  19. ports:
  20. - "3005:3005"
  21. depends_on:
  22. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement