before claude

This commit is contained in:
Gilles Soulier
2026-01-17 13:40:26 +01:00
parent d0b73b9319
commit cf7c415e22
35 changed files with 3411 additions and 221 deletions

View File

@@ -40,9 +40,41 @@ services:
- "3000:80"
environment:
TZ: Europe/Paris
VITE_API_TOKEN: ${API_TOKEN:-}
env_file:
- .env
depends_on:
- api
analytics-ui:
build: ./analytics-ui
ports:
- "8070:80"
environment:
TZ: Europe/Paris
PW_DB_HOST: postgres
PW_DB_PORT: 5432
PW_DB_NAME: pricewatch
PW_DB_USER: pricewatch
PW_DB_PASSWORD: pricewatch
PW_REDIS_HOST: redis
PW_REDIS_PORT: 6379
PW_REDIS_DB: 0
env_file:
- .env
depends_on:
- postgres
- redis
adminer:
image: adminer
ports:
- "8071:8080"
environment:
TZ: Europe/Paris
depends_on:
- postgres
volumes:
pricewatch_pgdata:
pricewatch_redisdata: