Guest User

opencloud docker compose

a guest
Jul 17th, 2025
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. services:
  2. opencloud-rolling:
  3. container_name: opencloud
  4. volumes:
  5. - opencloud-data:/var/lib/opencloud
  6. - opencloud-config:/etc/opencloud
  7. image: opencloudeu/opencloud-rolling:latest
  8. restart: always
  9. ports:
  10. - 9200:9200
  11. entrypoint:
  12. - /bin/sh
  13. command: ["-c", "opencloud init --insecure true || true; opencloud server"]
  14. environment:
  15. - IDM_CREATE_DEMO_USERS=false
  16. - OC_URL=https://Your_Domain.com:9200
  17. - IDM_ADMIN_PASSWORD=admin
  18. - OC_INSECURE=true
  19. - JWT_SECRET=WsAm59YfhLaTER2SXJ
  20. - PROXY_ENABLE_BASIC_AUTH=true
  21. volumes:
  22. opencloud-data:
  23. opencloud-config:
Advertisement
Add Comment
Please, Sign In to add comment