Guest User

Untitled

a guest
Oct 28th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. web:
  5. image: drupal:8.4-apache
  6. volumes:
  7. - drupal-modules:/var/www/html/modules
  8. - drupal-profiles:/var/www/html/profiles
  9. - drupal-themes:/var/www/html/themes
  10. ports:
  11. - 8080:80
  12. db:
  13. image: postgres:9.6
  14. environment:
  15. POSTGRES_USER: drupal
  16. POSTGRES_PASSWORD: s3cret
  17. POSTGRES_DB: drupal
  18. PGDATA: /var/lib/postgresql/data/pgdata
  19. volumes:
  20. - pg-data:/var/lib/postgresql/data/pgdata
  21.  
  22. volumes:
  23. drupal-modules:
  24. drupal-profiles:
  25. drupal-themes:
  26. pg-data:
Add Comment
Please, Sign In to add comment