{"id":13551952,"url":"https://github.com/pretalx/pretalx-docker","last_synced_at":"2025-12-30T00:03:17.455Z","repository":{"id":32025554,"uuid":"127477910","full_name":"pretalx/pretalx-docker","owner":"pretalx","description":"Docker setup for a complete pretalx installation. Community-sourced, not officially supported.","archived":false,"fork":false,"pushed_at":"2024-10-28T23:33:40.000Z","size":56,"stargazers_count":32,"open_issues_count":7,"forks_count":47,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-10-29T00:23:29.524Z","etag":null,"topics":["ansible","docker","docker-compose","pretalx"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pretalx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-30T22:18:19.000Z","updated_at":"2024-10-28T23:33:41.000Z","dependencies_parsed_at":"2024-01-26T12:18:21.414Z","dependency_job_id":"5f6d484a-4295-4950-bacb-91a7eccb48dc","html_url":"https://github.com/pretalx/pretalx-docker","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pretalx%2Fpretalx-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pretalx%2Fpretalx-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pretalx%2Fpretalx-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pretalx%2Fpretalx-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pretalx","download_url":"https://codeload.github.com/pretalx/pretalx-docker/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":222911644,"owners_count":17056714,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","docker","docker-compose","pretalx"],"created_at":"2024-08-01T12:01:56.305Z","updated_at":"2025-12-30T00:03:17.450Z","avatar_url":"https://github.com/pretalx.png","language":"Shell","funding_links":[],"categories":["HTML","docker"],"sub_categories":[],"readme":"# pretalx-docker\n\nThis repository contains a docker-compose setup for a\n[pretalx](https://github.com/pretalx/pretalx) installation based on docker.\n\n**⚠️ Please note that this repository is provided by the pretalx community, and not supported by the pretalx team. ⚠️**\n\n**⚠️ The files in this repository may not support the current pretalx version, or may be undocumented, not secure, and/or\noutdated. Please make sure you read the files before executing them, and check the\n[issues](https://github.com/pretalx/pretalx-docker/issues) for further information. ⚠️**\n\n## Installation with docker-compose\n\n### For testing\n\n* Run ``docker-compose up -d``. After a few minutes the setup should be accessible at http://localhost/orga\n* Set up a user and an organizer by running ``docker exec -it pretalx pretalx init``.\n\n### For production\n\n* Edit ``conf/pretalx.cfg`` and fill in your own values (→ [configuration\n  documentation](https://docs.pretalx.org/en/latest/administrator/configure.html))\n* Edit ``docker-compose.yml`` and change the line to ``ports: - \"127.0.0.1:8346:80\"`` (if you use nginx). **Change the\n  database password.**\n* If you don't want to use docker volumes, create directories for the persistent data and make them read-writeable for\n  the userid 999 and the groupid 999. Change ``pretalx-redis``, ``pretalx-database``, ``pretalx-data`` and ``pretalx-public`` to the corresponding\n  directories you've chosen.\n* Configure a reverse-proxy for better security and to handle TLS. Pretalx listens on port 80 in the ``pretalxdocker``\n  network. You can find a few words on an nginx configuration at\n  ``reverse-proxy-examples/nginx``\n* Make sure you serve all requests for the `/static/` and `/media/` paths (when `debug=false`). See [installation](https://docs.pretalx.org/administrator/installation/#step-7-ssl) for more information\n* Optional: Some of the Gunicorn parameters can be adjusted via environment variables:\n  * To adjust the number of [Gunicorn workers](https://docs.gunicorn.org/en/stable/settings.html#workers), provide\n  the container with `GUNICORN_WORKERS` environment variable.\n  * `GUNICORN_MAX_REQUESTS` and `GUNICORN_MAX_REQUESTS_JITTER` to configure the requests a worker instance will process before restarting.\n  * `GUNICORN_FORWARDED_ALLOW_IPS` lets you specify which IPs to trust (i.e. which reverse proxies' `X-Forwarded-*` headers can be used to infer connection security).\n  * `GUNICORN_BIND_ADDR` can be used to change the interface and port that Gunicorn will listen on. Default: `0.0.0.0:80`\n\n  Here's how to set an environment variable [in\n  `docker-compose.yml`](https://docs.docker.com/compose/environment-variables/set-environment-variables/)\n  or when using [`docker run` command](https://docs.docker.com/engine/reference/run/#env-environment-variables).\n* Run ``docker-compose up -d ``. After a few minutes the setup should be accessible under http://yourdomain.com/orga\n* Set up a user and an organizer by running ``docker exec -ti pretalx pretalx init``.\n* Set up a cronjob for periodic tasks like this ``15,45 * * * * docker exec pretalx-app pretalx runperiodic``\n\n## Updates with docker-compose\n\n* Run ``docker-compose stop``, ``docker-compose pull`` and finally ``docker-compose up -d`` to upgrade to the newest version. \n\n## Other installations\n\n* Ansible role without docker: https://github.com/pretalx/ansible-pretalx/\n* More complex docker based pretalx installation: https://github.com/allmende/pretalx-docker\n\n# For pretalx-docker maintainers\n\nTo upgrade the repo to a new version, e.g. `v2025.2.2`, run `just release v2025.2.2`. This should handle the submodule,\nmake a properly tagged commit, and push it including the tags.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpretalx%2Fpretalx-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpretalx%2Fpretalx-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpretalx%2Fpretalx-docker/lists"}