Add registration

This commit is contained in:
2025-12-22 23:02:41 +01:00
parent 5b91dc0bbe
commit 28094bae12
39 changed files with 441 additions and 129 deletions

View File

@@ -30,6 +30,8 @@ services:
labels:
- "traefik.http.routers.backend.rule=Host(`api.cashlow.local`)"
- "traefik.http.services.backend.loadbalancer.server.port=3000"
env_file:
- .env
frontend:
tty: true
@@ -46,6 +48,21 @@ services:
- "traefik.http.routers.frontend.rule=Host(`app.cashlow.local`)"
- "traefik.http.services.frontend.loadbalancer.server.port=3000"
database:
tty: true
restart: unless-stopped
image: timescale/timescaledb-ha:pg17
volumes:
- ./data/postgres:/home/postgres/pgdata/data
env_file:
- .env
user: root
ports:
- "5432:5432"
networks:
cashlow:
ipv4_address: 10.231.215.4
networks:
cashlow:
driver: bridge