Aggiunto file docker compose

This commit is contained in:
piccihud
2024-05-13 08:32:46 +02:00
parent 4754d4353d
commit 3ef4099e2b
12 changed files with 210 additions and 0 deletions

3
code/.env Normal file
View File

@ -0,0 +1,3 @@
COLLABORA_USERNAME=""
COLLABORA_PASSWORD=""
COLLABORA_DOMAIN=""

20
code/docker-compose.yml Normal file
View File

@ -0,0 +1,20 @@
services:
code:
container_name: code
image: collabora/code:latest
env_file: .env
restart: unless-stopped
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:
- 3005:9980
volumes:
- /etc/localtime:/etc/localtime
- /etc/timezone:/etc/timezone
cap_add:
- MKNOD
tty: true