Advertisement
Guest User

Untitled

a guest
Feb 1st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. version: '3'
  2.  
  3. services:
  4. db:
  5. image: postgres
  6. restart: always
  7. volumes:
  8. - ./db:/var/lib/postgresql/data
  9. environment:
  10. - POSTGRES_DB=nextcloud
  11. - POSTGRES_USER=nextcloud
  12. - POSTGRES_PASSWORD=nope!
  13. app:
  14. image: nextcloud
  15. ports:
  16. - 8080:80
  17. links:
  18. - db
  19. volumes:
  20. - ./nextcloud:/var/www/html
  21. environment:
  22. - POSTGRES_DB=nextcloud
  23. - POSTGRES_USER=nextcloud
  24. - POSTGRES_PASSWORD=nope!
  25. - POSTGRES_HOST=db
  26. restart: always
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement