mirror of
https://codeberg.org/gigirassy/nixos-server-config
synced 2026-08-30 23:37:41 +00:00
35 lines
951 B
YAML
35 lines
951 B
YAML
# more functional alt pinterest frontend, coded by me
|
|
version: "3.8"
|
|
services:
|
|
anubis:
|
|
image: ghcr.io/techarohq/anubis:main
|
|
environment:
|
|
BIND: ":8080"
|
|
DIFFICULTY: "5"
|
|
METRICS_BIND: ":9090"
|
|
SERVE_ROBOTS_TXT: "true"
|
|
TARGET: "http://pinata:8080"
|
|
POLICY_FNAME: "/data/cfg/botPolicy.yaml"
|
|
OG_PASSTHROUGH: "true"
|
|
OG_EXPIRY_TIME: "24h"
|
|
volumes:
|
|
- "/home/nune/anubis-rules/botPolicy.yaml:/data/cfg/botPolicy.yaml:ro"
|
|
- "/home/nune/anubis-rules/amazonips.yaml:/amazonips.yaml"
|
|
- "/home/nune/anubis-rules/oracleips.yaml:/oracleips.yaml"
|
|
ports:
|
|
- "127.0.0.1:4100:8080"
|
|
networks:
|
|
- pinata
|
|
pinata:
|
|
image: ghcr.io/gigirassy/pinata:main
|
|
container_name: pinata
|
|
ports:
|
|
- "127.0.0.1:4099:8080"
|
|
restart: unless-stopped
|
|
environment:
|
|
- PINATA_BOOKMARK_KEY=[REDACTED]
|
|
networks:
|
|
- pinata
|
|
networks:
|
|
pinata:
|
|
driver: bridge |