We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To simplify setting up the server, you need to create environment variables that point to the database.
Аs an example
version: '3.7' services: cells: image: pydio/cells:latest restart: unless-stopped ports: - "8200:8080" environment: - CELLS_INSTALL_YAML=/pydio/config/install.yml - DATABASE_NAME=cells - DATABASE_HOST=mysql - DATABASE_PASSWIRD=ChangeMe! volumes: - ./cellsdir:/var/cells - ./install-conf.yml:/pydio/config/install.yml:ro
mysql: image: mariadb restart: unless-stopped environment: MYSQL_ROOT_PASSWORD: ChangeMe! MYSQL_DATABASE: cells MYSQL_USER: pydio MYSQL_PASSWORD: ChangeMe! volumes: - ./mysqldir:/var/lib/mysql
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To simplify setting up the server, you need to create environment variables that point to the database.
Аs an example
version: '3.7'
services:
cells:
image: pydio/cells:latest
restart: unless-stopped
ports:
- "8200:8080"
environment:
- CELLS_INSTALL_YAML=/pydio/config/install.yml
- DATABASE_NAME=cells
- DATABASE_HOST=mysql
- DATABASE_PASSWIRD=ChangeMe!
volumes:
- ./cellsdir:/var/cells
- ./install-conf.yml:/pydio/config/install.yml:ro
mysql:
image: mariadb
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: ChangeMe!
MYSQL_DATABASE: cells
MYSQL_USER: pydio
MYSQL_PASSWORD: ChangeMe!
volumes:
- ./mysqldir:/var/lib/mysql
The text was updated successfully, but these errors were encountered: