Advertisement
Guest User

Untitled

a guest
Apr 6th, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. ersion: '3'
  2. services:
  3. app:
  4. container_name: app-server
  5. image: nextcloud:fpm
  6. restart: always
  7. expose:
  8. - '80'
  9. - '9000'
  10. volumes:
  11. - app_data:/var/www/html
  12. onlyoffice-document-server:
  13. container_name: onlyoffice-document-server
  14. image: onlyoffice/documentserver:latest
  15. restart: always
  16. expose:
  17. - '80'
  18. - '443'
  19. volumes:
  20. - document_data:/var/www/onlyoffice/Data
  21. - document_log:/var/log/onlyoffice
  22. nginx:
  23. container_name: nginx-server
  24. image: nginx
  25. restart: always
  26. ports:
  27. - 80:80
  28. - 443:443
  29. volumes:
  30. - ./nginx.conf:/etc/nginx/nginx.conf
  31. - app_data:/var/www/html
  32. volumes:
  33. document_data:
  34. document_log:
  35. app_data:
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement