Guest User

Untitled

a guest
Sep 19th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. version: '3'
  2. services:
  3. web:
  4. image: olive007/ubuntu-php-apache:16.04-7.0-2.4
  5. environment:
  6. NEW_USER_ID: 55693
  7. NEW_GROUP_ID: 55693
  8. DB_HOST: postgre
  9. DB_TYPE: postgre
  10. DB_NAME: moodle-nbcs
  11. DB_USER: moodle
  12. DB_PASSWORD: test
  13. ports:
  14. - "80:80"
  15. volumes:
  16. - moodledata:/var/www/moodledata
  17. - ./moodle:/var/www/html/
  18. postgre:
  19. image: postgres
  20. environment:
  21. POSTGRES_PASSWORD: test
  22. POSTGRES_DB: moodle-nbcs
  23. POSTGRES_USER: moodle
  24. volumes:
  25. - database:/var/lib/postgresql
  26. volumes:
  27. database:
  28. moodledata:
Add Comment
Please, Sign In to add comment