feat(service): pydio-cells.yml
This commit is contained in:
parent
548dc51517
commit
8bc3737b45
1 changed files with 36 additions and 0 deletions
36
templates/compose/pydio-cells.yml
Normal file
36
templates/compose/pydio-cells.yml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# documentation: https://docs.pydio.com/
|
||||
# slogan: High-performance large file sharing, native no-code automation, and a collaboration-centric architecture that simplifies access control without compromising security or compliance.
|
||||
# tags: storage
|
||||
# logo: svgs/pydio-cells.svg
|
||||
# port: 8080
|
||||
|
||||
services:
|
||||
cells:
|
||||
image: pydio/cells:latest
|
||||
environment:
|
||||
- SERVICE_URL_CELLS_8080
|
||||
- CELLS_SITE_EXTERNAL=https://${SERVICE_FQDN_CELLS}
|
||||
- CELLS_SITE_NO_TLS=1
|
||||
volumes:
|
||||
- cellsdir:/var/cells
|
||||
mariadb:
|
||||
image: 'mariadb:11'
|
||||
volumes:
|
||||
- mysqldir:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=${SERVICE_PASSWORD_MYSQLROOT}
|
||||
- MYSQL_DATABASE=${MYSQL_DATABASE:-cells}
|
||||
- MYSQL_USER=${SERVICE_USER_MYSQL}
|
||||
- MYSQL_PASSWORD=${SERVICE_PASSWORD_MYSQL}
|
||||
healthcheck:
|
||||
test:
|
||||
- CMD
|
||||
- healthcheck.sh
|
||||
- '--connect'
|
||||
- '--innodb_initialized'
|
||||
interval: 10s
|
||||
timeout: 20s
|
||||
retries: 5
|
||||
volumes:
|
||||
cellsdir: {}
|
||||
mysqldir: {}
|
||||
Loading…
Reference in a new issue