Files
infrastructure/hosts/ps10rp/gitea/compose.yaml
Renovate Bot 83532cbc11
Some checks failed
lint-test-docker / docker-lint (push) Successful in 9s
renovate / renovate (push) Has been cancelled
Update ghcr.io/tailscale/tailscale Docker tag to v1.86.2 (#1079)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker) ([source](https://github.com/tailscale/tailscale)) | minor | `v1.84.3` -> `v1.86.2` |

---

### Release Notes

<details>
<summary>tailscale/tailscale (ghcr.io/tailscale/tailscale)</summary>

### [`v1.86.2`](https://github.com/tailscale/tailscale/releases/tag/v1.86.2)

[Compare Source](https://github.com/tailscale/tailscale/compare/v1.84.3...v1.86.2)

Please refer to the changelog available at https://tailscale.com/changelog

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xLjMiLCJ1cGRhdGVkSW5WZXIiOiI0MS4xLjMiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImltYWdlIl19-->

Reviewed-on: #1079
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2025-07-31 21:14:32 +00:00

69 lines
1.9 KiB
YAML

services:
tailscale-gitea:
image: ghcr.io/tailscale/tailscale:v1.86.2
container_name: tailscale-gitea
cap_add:
- net_admin
- sys_module
environment:
- TS_STATE_DIR=/var/lib/tailscale
- TS_ENABLE_METRICS=true
- TS_HOSTNAME=gitea-ps10rp
- TS_SERVE_CONFIG=/config/serve.json
network_mode: service:gitea
restart: always
volumes:
- tailscale:/var/lib/tailscale
- ${PWD}/serve.json:/config/serve.json
devices:
- /dev/net/tun:/dev/net/tun
postgresql:
image: docker.io/postgres:17.5-alpine3.21
container_name: gitea-postgres
env_file:
- .env
environment:
- POSTGRES_USER=gitea
- POSTGRES_DB=gitea
networks:
internal: null
restart: always
volumes:
- postgresql:/var/lib/postgresql/data
gitea:
image: gitea/gitea:1.24.3
container_name: gitea
depends_on:
- postgresql
environment:
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST=gitea-postgres:5432
- GITEA__database__NAME=gitea
- GITEA__database__USER=gitea
labels:
traefik.enable: true
traefik.docker.network: internal
traefik.http.routers.gitea.entrypoints: web-secure
traefik.http.routers.gitea.rule: Host(`gitea.lebens-home.net`)
traefik.http.routers.gitea.service: gitea
traefik.http.services.gitea.loadbalancer.server.port: 3000
networks:
internal: null
restart: always
volumes:
- gitea:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
internal:
name: internal
external: true
volumes:
tailscale:
postgresql:
gitea: