Version: 1.4.8
Defaults
From OpenAdmin > Hosting Plans > Defaults Administrators can edit values for the docker-compose.yml
and .env
files used for new users.
In these files you can configure additional services (docker containers) and change defaults for existing services.
Keep in mind that this is intended for advanced users and misconfiguration can cause exposed system ports, user hogging resources or exciding disk limits.
When adding new services keep in mind the following:
- container name must be same as service name
- cpu and mempory limits for service must be named in format:
SERVICE_
CPU andSERVICE_
RAM. - other variables for service should also be prefixed with
SERVICE_
- processes inside containers must be run as root (
0
) user in order for container files to be counted against user quota and avoid permission issues. - configuration files should be mounted in read-only mode.
Was this helpful?