my personal dotfiles
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add pocketid config

+30
+11
selfhost/pocketid/internal.env
··· 1 + PUID= 2 + PGID= 3 + 4 + # APP_URL= 5 + # APP_URL= 6 + 7 + # Generate with: openssl rand -base64 32 8 + ENCRYPTION_KEY= 9 + 10 + DB_PROVIDER= 11 + DB_CONNECTION_STRING=
+19
selfhost/pocketid/pocketid-compose.yaml
··· 1 + services: 2 + pocket-id: 3 + image: ghcr.io/pocket-id/pocket-id:v2 4 + restart: unless-stopped 5 + env_file: 6 + - .env 7 + ports: 8 + - 1411:1411 9 + volumes: 10 + - pocket-id-data:/app/data 11 + 12 + volumes: 13 + pocket-id-data: 14 + name: pocket-id-data 15 + driver: local 16 + 17 + networks: 18 + holonet: 19 + external: true