Advertisement
Guest User

Untitled

a guest
Mar 29th, 2016
417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. humhub_app:
  2. image: richarvey/nginx-php-fpm
  3. environment:
  4. VIRTUAL_HOST: hub.common.scot
  5. ENVIRONMENT: dev
  6. volumes:
  7. - ./vhost:/etc/nginx/sites-available:ro
  8. - /etc/ssmtp/ssmtp.conf:/etc/ssmtp/ssmtp.conf:ro
  9. - ../public_html:/var/www/html
  10. ports:
  11. - "8090:80"
  12. links:
  13. - db
  14. container_name: hub_dev
  15. mem_limit: 1000m
  16. cpu_shares: 240
  17. humhub_db:
  18. image: mysql
  19. mem_limit: 1000m
  20. cpu_shares: 240
  21. expose:
  22. - "3306"
  23. restart: always
  24. environment:
  25. MYSQL_ROOT_PASSWORD: 32720283b5fb32
  26. MYSQL_DATABASE: humhub
  27. MYSQL_USER: hub_user
  28. MYSQL_PASSWORD: f90bff2494d
  29. container_name: hub_db_dev
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement