before claude
This commit is contained in:
@@ -33,6 +33,19 @@ services:
|
||||
depends_on:
|
||||
- postgres
|
||||
- redis
|
||||
|
||||
worker:
|
||||
build: .
|
||||
command: python -m pricewatch.app.cli.main worker
|
||||
env_file:
|
||||
- .env
|
||||
environment:
|
||||
PW_DB_HOST: postgres
|
||||
PW_REDIS_HOST: redis
|
||||
TZ: Europe/Paris
|
||||
depends_on:
|
||||
- postgres
|
||||
- redis
|
||||
|
||||
frontend:
|
||||
build: ./webui
|
||||
@@ -75,6 +88,23 @@ services:
|
||||
depends_on:
|
||||
- postgres
|
||||
|
||||
pgadmin:
|
||||
image: dpage/pgadmin4:latest
|
||||
ports:
|
||||
- "8072:80"
|
||||
environment:
|
||||
TZ: Europe/Paris
|
||||
PGADMIN_DEFAULT_EMAIL: admin@pricewatch.dev
|
||||
PGADMIN_DEFAULT_PASSWORD: pricewatch
|
||||
PGADMIN_CONFIG_SERVER_MODE: "False"
|
||||
PGADMIN_CONFIG_MASTER_PASSWORD_REQUIRED: "False"
|
||||
volumes:
|
||||
- pricewatch_pgadmin:/var/lib/pgadmin
|
||||
- ./pgadmin-servers.json:/pgadmin4/servers.json:ro
|
||||
depends_on:
|
||||
- postgres
|
||||
|
||||
volumes:
|
||||
pricewatch_pgdata:
|
||||
pricewatch_redisdata:
|
||||
pricewatch_pgadmin:
|
||||
|
||||
Reference in New Issue
Block a user