Advertisement
Guest User

Untitled

a guest
Feb 6th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. db:
  2. image: mariadb:latest
  3. environment:
  4. - MYSQL_ROOT_PASSWORD=Eak829ij23
  5. - MYSQL_USER=dba
  6. - MYSQL_PASSWORD=zoilo367
  7. - TERM=xterm-256color
  8. ports:
  9. - "3306:3306"
  10.  
  11. redis:
  12. image: redis
  13.  
  14. apache:
  15. build: ./apache-php
  16. ports:
  17. - "80:80"
  18. - "443:443"
  19. links:
  20. - db
  21. - redis
  22. volumes:
  23. - ./html:/var/www/html
  24. - ./apache-php/php.ini:/etc/php/conf.d/30-custom.ini
  25. - ./apache-php/apache.conf:/etc/apache2/sites-enabled/apache.conf
  26. environment:
  27. - RACK_ENV=development
  28. - BOOT2DOCKER=1
  29. - TERM=xterm-256color
  30. - ALLOW_OVERRIDE=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement