2024-05-13 08:32:46 +02:00
|
|
|
services:
|
|
|
|
code:
|
|
|
|
container_name: code
|
|
|
|
image: collabora/code:latest
|
|
|
|
env_file: .env
|
|
|
|
restart: unless-stopped
|
2024-12-26 15:03:19 +01:00
|
|
|
mem_limit: 2g
|
2024-05-13 08:32:46 +02:00
|
|
|
environment:
|
|
|
|
password: ${COLLABORA_PASSWORD}
|
|
|
|
username: ${COLLABORA_USERNAME}
|
|
|
|
domain: ${COLLABORA_DOMAIN}
|
|
|
|
dictionaries: en it
|
|
|
|
extra_params: --o:ssl.enable=true --o:ssl.termination=false # Set SSL options
|
|
|
|
ports:
|
2024-12-24 20:58:18 +01:00
|
|
|
- 127.0.0.1:3005:9980
|
2024-05-13 08:32:46 +02:00
|
|
|
volumes:
|
|
|
|
- /etc/localtime:/etc/localtime
|
|
|
|
- /etc/timezone:/etc/timezone
|
|
|
|
cap_add:
|
|
|
|
- MKNOD
|
|
|
|
tty: true
|