Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1290fb1a40 |
+1
-7
@@ -19,10 +19,4 @@ SMTP_HOST=127.0.0.71
|
||||
SMTP_USER=pretix
|
||||
SMTP_PORT=1025
|
||||
SMTP_TLS=on
|
||||
SMTP_SSL=off
|
||||
|
||||
# --- Optional: Custom Plugin Image ---
|
||||
# Set COMPOSE_FILE and PRETIX_PLUGIN_IMAGE_TAG to use custom plugins:
|
||||
#
|
||||
# COMPOSE_FILE=compose.yml:compose.plugin.yml
|
||||
# PRETIX_PLUGIN_IMAGE_TAG=1.0.0
|
||||
SMTP_SSL=off
|
||||
@@ -1,32 +0,0 @@
|
||||
# Pretix Recipe Maintenance
|
||||
|
||||
All contributions should be made via a pull request. This is to ensure a
|
||||
certain quality and consistency, that others can rely on.
|
||||
|
||||
## Maintainer Responsibilities
|
||||
|
||||
A recipe maintainer has the following responsibilities:
|
||||
|
||||
- Respond to pull requests / issues within two weeks
|
||||
- Make image security updates within a week
|
||||
- Make image major updates every three months
|
||||
|
||||
In order to fullfill these responsibilities a recipe maintainer:
|
||||
|
||||
- Has to watch the repository (to get notifications)
|
||||
- Needs to make sure renovate is configured properly
|
||||
|
||||
## Pull Requests
|
||||
|
||||
A pull request can be merged if it is approved by at least one maintainer. For
|
||||
pull requests opened by a maintainer they need to be approved by another
|
||||
maintainer. Even though it is okay to merge a pull request with one approval, it
|
||||
is always better if all maintainers looked at the pull request and approved it.
|
||||
|
||||
## Become a maintainer
|
||||
|
||||
Everyone can apply to be a recipe maintainer:
|
||||
1. Watch the repository to always get updates
|
||||
2. Simply add your self to the list in the [README.md](./README.md) and open a new pull request with the change.
|
||||
3. Once the pull request gets merged you will be added to the [pretix maintainers team](https://git.coopcloud.tech/org/coop-cloud/teams/pretix-maintainers).
|
||||
4. Join the room [#cc-|-pretix-maintenance:matrix.org](#cc-|-pretix-maintenance:matrix.org) and chat to other maintainers.
|
||||
@@ -4,7 +4,6 @@
|
||||
|
||||
<!-- metadata -->
|
||||
|
||||
* **Maintainer**: Local-IT: [@moritz](https://git.coopcloud.tech/moritz), [@msimon](https://git.coopcloud.tech/simon), [@carla](https://git.coopcloud.tech/carla)
|
||||
* **Category**: Apps
|
||||
* **Status**: 0
|
||||
* **Image**: [`pretix`](https://hub.docker.com/r/pretix), 4, upstream
|
||||
@@ -27,28 +26,6 @@
|
||||
|
||||
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).
|
||||
|
||||
## Plugins
|
||||
|
||||
1. Build or obtain a plugin bundle image.
|
||||
Use the [pretix-plugins Repository](https://git.coopcloud.tech/coop-cloud/pretix-plugins) to build an image containing the plugins you need, or use an existing published image.
|
||||
2. Set the following variables in your app .env:
|
||||
```
|
||||
COMPOSE_FILE=compose.yml:compose.plugin.yml
|
||||
PRETIX_PLUGIN_IMAGE=git.coopcloud.tech/your-org/pretix-plugins:1.0.0
|
||||
```
|
||||
3. Deploy as usual:
|
||||
`abra app deploy <app-name>`
|
||||
|
||||
### How the override works
|
||||
`compose.plugin.yml` is an optional compose file that overrides only the `image:` field of the app service. Docker Compose merges the two files at deploy time. If `PRETIX_PLUGIN_IMAGE` is not set, the standard pretix/standalone:stable
|
||||
image is used as a fallback, so the override file can be included without risk.
|
||||
|
||||
### Operators without plugins
|
||||
No action required. As long as `COMPOSE_FILE` and `PRETIX_PLUGIN_IMAGE` are not set in your `.env`, the standard pretix image is used. This override has no effect on your deployment.
|
||||
|
||||
### Building your own plugin bundle
|
||||
See the [pretix-plugins Repository](https://git.coopcloud.tech/coop-cloud/pretix-plugins) `README` for instructions on how to add or change the plugins you want to use.
|
||||
|
||||
|
||||
## TODO
|
||||
|
||||
@@ -56,4 +33,4 @@ See the [pretix-plugins Repository](https://git.coopcloud.tech/coop-cloud/pretix
|
||||
* [x] healthchecks
|
||||
* [x] cronjob: 15,45 * * * * /usr/bin/docker exec pretix.service pretix cron
|
||||
* [x] backups https://docs.pretix.eu/en/latest/admin/maintainance.html#maintainance
|
||||
* [x] plugins
|
||||
* [ ] plugins
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
# compose.plugin.yml
|
||||
# Optional Override: Changes the Standard-Pretix Image with an Image with preinstalled custom plugins.
|
||||
# Set active via setting: COMPOSE_FILE=compose.yml:compose.plugin.yml
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: git.coopcloud.tech/coop-cloud/pretix-plugins:${PRETIX_PLUGIN_IMAGE_TAG:-latest}
|
||||
+5
-5
@@ -3,7 +3,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
app:
|
||||
image: "pretix/standalone:2026.5.1"
|
||||
image: "pretix/standalone:2026.1.1"
|
||||
networks:
|
||||
- proxy
|
||||
- internal
|
||||
@@ -19,20 +19,20 @@ services:
|
||||
- admin_pass
|
||||
deploy:
|
||||
restart_policy:
|
||||
condition: any
|
||||
condition: on-failure
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=80"
|
||||
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
|
||||
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
||||
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "coop-cloud.${STACK_NAME}.version=2.7.0+2026.5.1"
|
||||
- "coop-cloud.${STACK_NAME}.version=2.4.0+2026.1.1"
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost/healthcheck"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 30
|
||||
start_period: 5m
|
||||
start_period: 1m
|
||||
|
||||
db:
|
||||
image: postgres:16
|
||||
@@ -72,7 +72,7 @@ services:
|
||||
backupbot.restore.post-hook: "/pg_backup.sh restore"
|
||||
|
||||
redis:
|
||||
image: redis:8.8.0-alpine
|
||||
image: redis:8.6.0-alpine
|
||||
volumes:
|
||||
- "redis:/data"
|
||||
healthcheck:
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
New envs for COMPOSE_FILE and PRETIX_PLUGIN_IMAGE and a compose.plugin.yml to add custom plugins in the pretix-plugins coop-cloud repository.
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user