4 Commits

Author SHA1 Message Date
7080886b06 chore: publish 1.0.1+alpine release
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/tag Build is passing
2026-01-14 13:43:16 -05:00
4b97f62c54 fix link
Some checks failed
continuous-integration/drone/push Build is failing
2026-01-14 13:20:44 -05:00
80f6aa2370 use 9052 as traefik port
Some checks failed
continuous-integration/drone/push Build is failing
2026-01-13 13:46:11 -05:00
80dc90ae1a Add maintainer information
Some checks failed
continuous-integration/drone/push Build is failing
2026-01-13 01:50:16 -05:00
5 changed files with 35 additions and 4 deletions

View File

@ -9,7 +9,7 @@ ENABLE_BACKUPS=false
# For example, if your traefik is at domain traefik.example.com, set traefik_example_com_app
# TODO Can we automate setting this?
TRAEFIK_SERVICE=traefik_example_com_app
TRAEFIK_PORT=8080 # traefik port with the entrypoint to use
TRAEFIK_PORT=9052 # traefik port with the onion entrypoint. Generally should not be changed
ONION_PORT=80 # port that will be exposed to clients of the onion service
## Enabling these reduces latency but you will NOT be anonymous

24
MAINTENANCE.md Normal file
View File

@ -0,0 +1,24 @@
# Onion Recipe Maintenance
All contributions should be made via a pull request. This is to ensure a certain quality / consistency, that others can rely on.
## Maintainer Responsibilities
A recipe maintainer has the following responsibilities:
- respond to pull requests / issues within a week
- make image security updates within a day
- make image patch / minor updates within a week
- make image major updates within a month
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
## Merge rules
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.
## Becoming a maintainer
Everyone can apply to be a recipe maintainer. Simply add your self to the list in the [README.md](./README.md) and open a new pull request with the change.

View File

@ -4,8 +4,9 @@ Creates a [Tor .onion service](https://community.torproject.org/onion-services)
<!-- metadata -->
* **Category**: Apps
* **Status**: 3
* **Maintainers**: [@vaznasty](https://git.coopcloud.tech/vaznasty)
* **Status**: `testing`
* **Category**: Utilities
* **Image**: [`onimages/tor:alpine`](https://onionservices.torproject.org/apps/base/containers), 4, upstream
* **Healthcheck**: Yes
* **Backups**: Yes

View File

@ -11,7 +11,7 @@ services:
condition: on-failure
labels:
- "traefik.enable=false"
- "coop-cloud.${STACK_NAME}.version=1.0.0+alpine"
- "coop-cloud.${STACK_NAME}.version=1.0.1+alpine"
- "backupbot.backup=${ENABLE_BACKUPS}"
- "backupbot.backup.volumes.tor.path=traefik"
configs:

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}