Aggiunto file docker compose
This commit is contained in:
20
code/docker-compose.yml
Normal file
20
code/docker-compose.yml
Normal 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
|
Reference in New Issue
Block a user