Guest User

Untitled

a guest
Feb 17th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. version: "3"
  2. services:
  3. web:
  4. image: webdevops/php-nginx:7.1
  5. ports:
  6. - "8082:80"
  7. volumes:
  8. - /Users/tunlookup/Documents/cmerp:/app # change path to your project
  9. environment:
  10. - PHP_DEBUGGER=xdebug
  11. - PHP_DISPLAY_ERRORS=1
  12. - PHP_DATE_TIMEZONE=Asia/Ho_Chi_Minh
  13. - WEB_DOCUMENT_ROOT=/app
  14. depends_on:
  15. - postgres
  16.  
  17. postgres:
  18. image: postgres
  19. restart: always
  20. ports:
  21. - 5432:5432
  22. volumes:
  23. - ./db_data:/var/lib/postgresql/data
  24. environment:
  25. POSTGRES_USER: "admin"
  26. POSTGRES_PASSWORD: "root"
  27. POSTGRES_DB: "cmerp"
Add Comment
Please, Sign In to add comment