Hi, Just for the record, below is the docker-compose file which is working with coolify in single user authorizer mode.
Some notes: * hostname must exists in DNS (localhost, whatever) (accessible at https://hostname.example.org:17443 * autogenerated username and password are in the log of the deployment * it is possible to use ldap, but needs manual tweaking of the config files Now I use it with ldap after I set the right parameters directly in the config files. Cheers, István ----------------- >8 ------------------------ services: nifi: image: 'apache/nifi:latest' container_name: nifi hostname: hostname.example.org ports: - '17443:17443' environment: - NIFI_WEB_HTTPS_PORT=17443 volumes: - 'nifi-database:/opt/nifi/nifi-current/database_repository' - 'nifi-logs:/opt/nifi/nifi-current/logs' - 'nifi-conf:/opt/nifi/nifi-current/conf' - 'nifi-nar-extensions:/opt/nifi/nifi-current/nar_extensions' - 'nifi-provenance:/opt/nifi/nifi-current/provenance_repository' - 'nifi-python-extensions:/opt/nifi/nifi-current/python_extensions' - 'nifi-state:/opt/nifi/nifi-current/state' - 'nifi-content:/opt/nifi/nifi-current/content_repository' - 'nifi-flowfile:/opt/nifi/nifi-current/flowfile_repository'
