Advertisement
Guest User

Untitled

a guest
May 19th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. version: '2'
  2. services:
  3. db-mysql-test:
  4. image: mysql
  5. container_name: db-mysql-test
  6. environment:
  7. - MYSQL_ROOT_PASSWORD=1234
  8. command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
  9. wordpress:
  10. image: wordpress
  11. container_name: wordpress
  12. ports:
  13. - 10210:80
  14. links:
  15. - db-mysql-test:mysql
  16. environment:
  17. - WORDPRESS_DB_HOST=mysql
  18. - WORDPRESS_DB_NAME=wordpress
  19. - WORDPRESS_DB_USER=root
  20. - WORDPRESS_DB_PASSWORD=1234
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement