Guest User

Untitled

a guest
Mar 16th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. ### mysql-docker/docker-compose.yml
  2. ```
  3. version: '3.3'
  4.  
  5. services:
  6. db:
  7. image: mysql:5.7
  8. ports:
  9. - "3306:3306"
  10. restart: always
  11. environment:
  12. MYSQL_ROOT_PASSWORD: somewordpress
  13. MYSQL_DATABASE: wordpress
  14. MYSQL_USER: wordpress
  15. MYSQL_PASSWORD: wordpress
  16.  
  17. ```
  18.  
  19. ### Running
  20. ```sh
  21. mysql-docker $ docker-compose up
  22. ```
Add Comment
Please, Sign In to add comment