27 lines
621 B
YAML
27 lines
621 B
YAML
version: '3'
|
|
|
|
services:
|
|
uptime-kuma:
|
|
container_name: uptime-kuma
|
|
image: louislam/uptime-kuma:1
|
|
ports:
|
|
- 3001:3001
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/uptimekuma/data:/app/data
|
|
|
|
collabora:
|
|
container_name: collabora
|
|
image: collabora/code
|
|
environment:
|
|
- alias_group1=${COLLABORA_DOMAIN}
|
|
- alias_group2=${OWNCLOUD_DOMAIN}
|
|
- username=${COLLABORA_USERNAME}
|
|
- password=${COLLABORA_PASSWORD}
|
|
- extra_params=--o:ssl.enable=false
|
|
ports:
|
|
- 9980:9980
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKERCONFIGS}/collabora/code:/etc/loolwsd
|