Less obstruse docker-compose? #254
Replies: 8 comments 5 replies
-
Common test method with Owncloud and Nextcloud is to run them locally without a reverse proxy. My .02 |
Beta Was this translation helpful? Give feedback.
-
I understand the idea. Our current opencloud_full example tries to be a full modular template for production use.
This is generally possible, but difficult. You need to setup all the routing between multiple containers and services, because of OpenIDConnect, Collabora, Wopiserver and so on. If you do not need all this, then compose is not needed at all. Single Container "Just take a look"
The
Then access |
Beta Was this translation helpful? Give feedback.
-
Addition:If you need demo users, use
as the second step. |
Beta Was this translation helpful? Give feedback.
-
Thanks, that definitely is an easier start with docker |
Beta Was this translation helpful? Give feedback.
-
This compose is working for my needs to test opencloud: services:
opencloud-rolling:
container_name: opencloud
volumes:
- /<local_directory_for_data>:/var/lib/opencloud
- /<local_directory_for_config>:/etc/opencloud
image: opencloudeu/opencloud-rolling
ports:
- 9200:9200
entrypoint:
- /bin/sh
command: ["-c", "opencloud init --insecure true || true; opencloud server"]
environment:
IDM_CREATE_DEMO_USERS: true
OC_URL: https://<your_docker_ip>:9200 |
Beta Was this translation helpful? Give feedback.
-
Cool, docker-compose works like a charme. Now we have to expand it for office and using existant reverse proxy (nginx or apache) ... |
Beta Was this translation helpful? Give feedback.
-
Okay, i would have a setup without traefik because i have a good working apache reverse proxy and docker config for nextcloud and many more with subdomains. |
Beta Was this translation helpful? Give feedback.
-
Just to ad to this, my use case will be the standalone Opencloud in Docker and accessing it via a Cloudflare Tunnel, so as minimal of an option that is possible would be great for myself as I am sure others as well. Hoping something like that is added to the documentation/examples. |
Beta Was this translation helpful? Give feedback.
-
A simpler docker compose example would be nice. Must be possible to run it without a full blown traefik integration, right? I just want to throw it into a test container and play around with it for a bit
Beta Was this translation helpful? Give feedback.
All reactions