-
Notifications
You must be signed in to change notification settings - Fork 4
Docker
Steve edited this page Jun 1, 2024
·
2 revisions
depending on your needs there is a compose file for a complete setup (munkiwebadmin, DB, munkirepo) or one for just munkiwebadmin with a DB.
check out the docker-compose.prod.repo.yml and change the URL to something usefull for you. Run docker compose:
docker-compose up -f docker-compose.prod.repo.yml check out the docker-compose.prod.yml, change the URL to something usefull for you and also change the munkirepo. Run docker compose:
docker-compose up -f docker-compose.prod.yml Check ‘settings’ for more possible settings
| Variable | Usage | Default |
|---|---|---|
| APPNAME | Django app name | MunkiWebAdmin |
| ALLOWED_HOSTS | django allowed hosts. e.g. [ munkiwebadmin.example.com ] | [ * ] |
| DEFAULT_MANIFEST | default manifest to use. serail_number or hostname | serial_number |
| DB | Database type. currently only postgres possible | postgres |
| DB_NAME | Database name | munkiwebadmin_db |
| DB_USER | Database user | postgres |
| DB_PASS | Database password | postgres |
| DB_HOST | Database host | db |
| DB_PORT | Database port | 5432 |