mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-01 03:20:29 +00:00
7fccc55151
Caused too many issues to solve, using apt instead
80 lines
2.0 KiB
TOML
80 lines
2.0 KiB
TOML
[services.nextcloud]
|
|
image = "nextcloud:fpm-alpine"
|
|
container_name = "nextcloud"
|
|
restart = "unless-stopped"
|
|
user = "82:82"
|
|
networks = ["nextcloud", "postgres", "proxy"]
|
|
volumes = [
|
|
"/docker/nextcloud:/var/www/html:z",
|
|
"/mnt/Storage/Nextcloud:/var/www/html/data",
|
|
"/etc/localtime:/etc/localtime:ro",
|
|
]
|
|
environment = [
|
|
"REDIS_HOST=redis",
|
|
"REDIS_HOST_PASSWORD=123",
|
|
"TRUSTED_PROXIES=caddy",
|
|
"NEXTCLOUD_TRUSTED_DOMAINS=cloud.korhonen.cc",
|
|
"OVERWRITEHOST=cloud.korhonen.cc",
|
|
"OVERWRITEPROTOCOL=https",
|
|
]
|
|
depends_on = ["redis"]
|
|
|
|
[services.nextcloud.labels]
|
|
"ofelia.enabled" = true
|
|
"ofelia.job-exec.nextcloud.schedule" = "0 */5 * * * *"
|
|
"ofelia.job-exec.nextcloud.command" = "php /var/www/html/cron.php"
|
|
"ofelia.job-exec.nextcloud.user" = "www-data"
|
|
"ofelia.smtp-host" = "${SMTP_HOST}"
|
|
"ofelia.smtp-port" = "${SMTP_PORT}"
|
|
"ofelia.smtp-user" = "${SMTP_USER}"
|
|
"ofelia.smtp-password" = "${SMTP_PASSWORD}"
|
|
"ofelia.email-to" = "${EMAIL_TO}"
|
|
"ofelia.email-from" = "${EMAIL_FROM}"
|
|
"ofelia.mail-only-on-error" = true
|
|
|
|
[services.redis]
|
|
image = "redis:alpine"
|
|
container_name = "redis-nextcloud"
|
|
networks = ["nextcloud"]
|
|
restart = "unless-stopped"
|
|
command = "redis-server --requirepass 123"
|
|
|
|
[services.coturn]
|
|
image = "instrumentisto/coturn"
|
|
container_name = "coturn"
|
|
restart = "unless-stopped"
|
|
env_file = ".env"
|
|
ports = ["3478:3478/tcp", "3478:3478/udp"]
|
|
networks = ["nextcloud"]
|
|
command = [
|
|
"-n",
|
|
"--log-file=stdout",
|
|
"--min-port=49160",
|
|
"--max-port=49200",
|
|
"--realm=cloud.korhonen.cc",
|
|
"--use-auth-secret",
|
|
"--static-auth-secret=${STATIC_AUTH_SECRET}",
|
|
]
|
|
|
|
[services.collabora]
|
|
image = "collabora/code"
|
|
container_name = "collabora"
|
|
restart = "unless-stopped"
|
|
env_file = ".env"
|
|
environment = [
|
|
"username=${COLLABORA_USERNAME}",
|
|
"password=${COLLABORA_PASSWORD}",
|
|
"domain=cloud.korhonen.cc",
|
|
'extra_params=--o:ssl.enable=false --o:ssl.termination=true',
|
|
]
|
|
networks = ["proxy"]
|
|
|
|
[networks.nextcloud]
|
|
external = false
|
|
|
|
[networks.postgres]
|
|
external = true
|
|
|
|
[networks.proxy]
|
|
external = true
|