Hi all,
I’m having hard time to make Collabora work by integrating their docker image in my existing docker-compose file running Nextcloud. Nextcloud is running on port 8888 and ssl is independently handled by a reverse-proxy. So ssl should be disabled on Collabora as well. Could you help me on how to add Collabora in the following docker-compose file? Thanks!
db:
image: mariadb:10
restart: always
privileged: true
environment:
- MYSQL_ROOT_PASSWORD=<mypassword>
- MYSQL_USER=<myuser>
- MYSQL_DATABASE=<mydb>
- MYSQL_PASSWORD=<mypassword>
- TZ="America/Chicago"
volumes:
- ./mysql:/var/lib/mysql
engine:
image: wonderfall/nextcloud
privileged: true
links:
- db:db
ports:
- "8888:8888"
environment:
- UID=1000
- GID=1000
- UPLOAD_MAX_SIZE=10G
- APC_SHM_SIZE=128M
- OPCACHE_MEM_SIZE=128
- CRON_PERIOD=15m
volumes:
- ./data:/data
- ./config:/config
- ./apps:/apps2