Compare commits
9 Commits
0.7.1+v0.1
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d3c3682936 | |||
| a06114d855 | |||
| 0e3daeffec | |||
| 717205a117 | |||
| 6771622bae | |||
| d5cb5c898f | |||
| ffa7d585af | |||
| f4135d7820 | |||
| 016728f970 |
21
compose.yml
21
compose.yml
@ -27,6 +27,9 @@ x-common-env: &common-env
|
|||||||
DJANGO_EMAIL_USE_SSL:
|
DJANGO_EMAIL_USE_SSL:
|
||||||
DJANGO_EMAIL_USE_TLS:
|
DJANGO_EMAIL_USE_TLS:
|
||||||
DJANGO_EMAIL_FROM:
|
DJANGO_EMAIL_FROM:
|
||||||
|
DJANGO_EMAIL_URL_APP:
|
||||||
|
DJANGO_CSRF_TRUSTED_ORIGINS:
|
||||||
|
DATA_UPLOAD_MAX_MEMORY_SIZE:
|
||||||
# Backend url
|
# Backend url
|
||||||
DRIVE_BASE_URL: "https://${DOMAIN}"
|
DRIVE_BASE_URL: "https://${DOMAIN}"
|
||||||
# Media
|
# Media
|
||||||
@ -92,14 +95,14 @@ services:
|
|||||||
|
|
||||||
app:
|
app:
|
||||||
user: "${DOCKER_USER:-1000}"
|
user: "${DOCKER_USER:-1000}"
|
||||||
image: lasuite/drive-frontend:v0.12.0
|
image: lasuite/drive-frontend:v0.19.0
|
||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
deploy:
|
deploy:
|
||||||
labels:
|
labels:
|
||||||
- "traefik.enable=false"
|
- "traefik.enable=false"
|
||||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
|
||||||
- "coop-cloud.${STACK_NAME}.version=0.7.1+v0.12.0"
|
- "coop-cloud.${STACK_NAME}.version=0.10.1+v0.19.0"
|
||||||
environment:
|
environment:
|
||||||
<<: [ *common-env ]
|
<<: [ *common-env ]
|
||||||
healthcheck:
|
healthcheck:
|
||||||
@ -113,7 +116,7 @@ services:
|
|||||||
|
|
||||||
backend:
|
backend:
|
||||||
user: ${DOCKER_USER:-1000}
|
user: ${DOCKER_USER:-1000}
|
||||||
image: lasuite/drive-backend:v0.12.0
|
image: lasuite/drive-backend:v0.19.0
|
||||||
command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ]
|
command: [ "gunicorn", "-c", "/usr/local/etc/gunicorn/drive.py", "drive.wsgi:application" ]
|
||||||
entrypoint: [ "/abra-entrypoint.sh", "/usr/local/bin/entrypoint" ]
|
entrypoint: [ "/abra-entrypoint.sh", "/usr/local/bin/entrypoint" ]
|
||||||
environment:
|
environment:
|
||||||
@ -137,7 +140,7 @@ services:
|
|||||||
|
|
||||||
celery:
|
celery:
|
||||||
user: ${DOCKER_USER:-1000}
|
user: ${DOCKER_USER:-1000}
|
||||||
image: lasuite/drive-backend:v0.12.0
|
image: lasuite/drive-backend:v0.19.0
|
||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ]
|
command: [ "celery", "-A", "drive.celery_app", "worker", "-l", "INFO" ]
|
||||||
@ -159,7 +162,7 @@ services:
|
|||||||
|
|
||||||
celery-beat:
|
celery-beat:
|
||||||
user: ${DOCKER_USER:-1000}
|
user: ${DOCKER_USER:-1000}
|
||||||
image: lasuite/drive-backend:v0.12.0
|
image: lasuite/drive-backend:v0.19.0
|
||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ]
|
command: [ "celery", "-A", "drive.celery_app", "beat", "-l", "INFO", "--schedule", "/tmp/celerybeat-schedule" ]
|
||||||
@ -206,7 +209,7 @@ services:
|
|||||||
- postgres_p
|
- postgres_p
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:8
|
image: redis:8.8.0
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "redis-cli", "ping"]
|
test: ["CMD", "redis-cli", "ping"]
|
||||||
interval: 10s
|
interval: 10s
|
||||||
@ -283,7 +286,7 @@ services:
|
|||||||
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
|
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
|
||||||
|
|
||||||
collabora:
|
collabora:
|
||||||
image: collabora/code:25.04.9.1.1
|
image: collabora/code:25.04.9.4.1
|
||||||
entrypoint: >
|
entrypoint: >
|
||||||
sh -c "
|
sh -c "
|
||||||
export password=\"$$(cat /run/secrets/collabora_p)\" &&
|
export password=\"$$(cat /run/secrets/collabora_p)\" &&
|
||||||
@ -321,7 +324,7 @@ services:
|
|||||||
- "traefik.http.routers.${STACK_NAME}_collabora.middlewares=${STACK_NAME}_collabora-cors"
|
- "traefik.http.routers.${STACK_NAME}_collabora.middlewares=${STACK_NAME}_collabora-cors"
|
||||||
|
|
||||||
onlyoffice:
|
onlyoffice:
|
||||||
image: onlyoffice/documentserver-de:9.2
|
image: onlyoffice/documentserver-de:9.3.1.2
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: [ "CMD", "curl", "-f", "http://localhost/hosting/discovery" ]
|
test: [ "CMD", "curl", "-f", "http://localhost/hosting/discovery" ]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
@ -360,7 +363,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
web:
|
web:
|
||||||
image: nginx:1.29
|
image: nginx:1.31.2
|
||||||
configs:
|
configs:
|
||||||
- source: nginx_conf
|
- source: nginx_conf
|
||||||
target: /etc/nginx/conf.d/default.conf
|
target: /etc/nginx/conf.d/default.conf
|
||||||
|
|||||||
Reference in New Issue
Block a user