Files
lores-node/compose.yml
2026-02-05 09:59:11 +11:00

49 lines
2.0 KiB
YAML

---
services:
app:
image: ghcr.io/local-resilience-tech/lores-node:v0.15.2
networks:
- proxy
environment:
DATABASE_URL: "sqlite:/data/projections.sqlite"
OPERATION_DATABASE_URL: "sqlite:/data/operations.sqlite"
NODE_DATA_DATABASE_URL: "sqlite:/data/node_data.sqlite"
CONFIG_PATH: "/data/config.toml"
volumes:
- data:/data
deploy:
restart_policy:
condition: on-failure
labels:
- "traefik.enable=true"
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=8200"
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.udp.routers.${STACK_NAME}-p2panda-udp-v4.entrypoints=p2panda-udp-v4"
- "traefik.udp.services.${STACK_NAME}-p2panda-udp-v4.loadbalancer.server.port=2022"
- "traefik.udp.routers.${STACK_NAME}-p2panda-udp-v6.entrypoints=p2panda-udp-v6"
- "traefik.udp.services.${STACK_NAME}-p2panda-udp-v6.loadbalancer.server.port=2023"
## Redirect from EXTRA_DOMAINS to DOMAIN
#- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
## Redirect HTTP to HTTPS
# - "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.scheme=https"
# - "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.permanent=true"
## When you're ready for release, run "abra recipe sync <name>" to set this
- "coop-cloud.${STACK_NAME}.version=0.1.0+0.14.0"
## Enable backups: https://docs.coopcloud.tech/maintainers/handbook/#how-do-i-configure-backuprestore
# - "backupbot.backup=true"
# - "backupbot.backup.path=/some/path"
# healthcheck:
# test: ["CMD", "curl", "-f", "http://localhost"]
# interval: 30s
# timeout: 10s
# retries: 10
# start_period: 1m
networks:
proxy:
external: true
volumes:
data: