before claude
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user