Advertisement
Guest User

Untitled

a guest
May 11th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. web:
  2. build: ./web
  3. ports:
  4. - 80:80
  5. links:
  6. - mysql:mysql_host
  7. # Volumes is a list of /path/on/host:/path/on/docker
  8. # Where the first path is the path on the composer
  9. volumes:
  10. - /home/myname/projekt:/var/www
  11.  
  12.  
  13. mysql:
  14. image: mysql/mysql-server
  15. ports:
  16. - 3306:3306
  17. environment:
  18. MYSQL_ROOT_PASSWORD: password
  19. MYSQL_DATABASE: db_name
  20. MYSQL_USER: db_usr
  21. MYSQL_PASSWORD: db_pwd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement