Compare commits
2 commits
f6da44e00f
...
4bbfad9e49
Author | SHA1 | Date | |
---|---|---|---|
4bbfad9e49 | |||
29aa0dfc6f |
9 changed files with 63 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
|||
file_ids:
|
||||
- docker/archive/asciinema/.env
|
||||
- docker/piracy-stack/.env
|
||||
version: "1"
|
||||
|
|
BIN
docker/archive/asciinema/.env.agebox
Normal file
BIN
docker/archive/asciinema/.env.agebox
Normal file
Binary file not shown.
29
docker/archive/asciinema/compose.yml
Normal file
29
docker/archive/asciinema/compose.yml
Normal file
|
@ -0,0 +1,29 @@
|
|||
services:
|
||||
asciinema:
|
||||
image: ghcr.io/asciinema/asciinema-server:20240428
|
||||
ports:
|
||||
- '16104:4000'
|
||||
- '33419:4002'
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
- asciinema_data:/var/opt/asciinema
|
||||
depends_on:
|
||||
postgres:
|
||||
condition: service_healthy
|
||||
|
||||
postgres:
|
||||
image: docker.io/library/postgres:14
|
||||
environment:
|
||||
- POSTGRES_HOST_AUTH_METHOD=trust
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: [ 'CMD-SHELL', 'pg_isready -U postgres' ]
|
||||
interval: 2s
|
||||
timeout: 5s
|
||||
retries: 10
|
||||
|
||||
volumes:
|
||||
asciinema_data:
|
||||
postgres_data:
|
|
@ -84,6 +84,12 @@ endpoints:
|
|||
conditions:
|
||||
- "[STATUS] == 200"
|
||||
- "[CERTIFICATE_EXPIRATION] > 48h"
|
||||
- name: traggo
|
||||
group: exposed
|
||||
url: "https://traggo.grobecker.me"
|
||||
conditions:
|
||||
- "[STATUS] == 200"
|
||||
- "[CERTIFICATE_EXPIRATION] > 48h"
|
||||
|
||||
- name: nextcloud
|
||||
group: external
|
||||
|
|
|
@ -27,6 +27,10 @@
|
|||
href: https://rssb.grobecker.me
|
||||
icon: sh-rss-bridge.svg
|
||||
description: cleaning and bridging shitty RSS-feeds
|
||||
- traggo:
|
||||
href: https://traggo.grobecker.me
|
||||
icon: sh-traggo.webp
|
||||
description: time-tracking but cool
|
||||
|
||||
- Collaboration:
|
||||
- Seafile:
|
||||
|
|
1
docker/traggo/.gitignore
vendored
Normal file
1
docker/traggo/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/traggodata
|
11
docker/traggo/compose.yml
Normal file
11
docker/traggo/compose.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
version: "3.7"
|
||||
services:
|
||||
traggo:
|
||||
image: traggo/server:latest
|
||||
ports:
|
||||
- 8870:3030
|
||||
environment:
|
||||
TRAGGO_DEFAULT_USER_NAME: "admin"
|
||||
TRAGGO_DEFAULT_USER_PASS: "mynewpassword"
|
||||
volumes:
|
||||
- ./traggodata:/opt/traggo/data
|
|
@ -3,6 +3,7 @@
|
|||
## Raspi
|
||||
|
||||
- navidrome updated
|
||||
- also added sharing
|
||||
- mediatracker removed
|
||||
|
||||
## Hetzner
|
||||
|
|
10
updates/2024-12-31.md
Normal file
10
updates/2024-12-31.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# Changes
|
||||
|
||||
## Raspi
|
||||
|
||||
- added traggo
|
||||
|
||||
## Hetzner
|
||||
|
||||
- adjusted Caddyfile for traggo
|
||||
- added traggo to homepage
|
Loading…
Add table
Reference in a new issue