22 lines
459 B
YAML
22 lines
459 B
YAML
services:
|
|
webarc:
|
|
build: .
|
|
ports:
|
|
- "8080:8000"
|
|
volumes:
|
|
- ./websites:/websites
|
|
- ./favicon:/favicon
|
|
env_file: env
|
|
|
|
postgres:
|
|
# Any Postgres with support for pgvector
|
|
image: git.hydrar.de/hydra/postgres:latest
|
|
restart: always
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ./db:/var/lib/postgresql/data/
|
|
environment:
|
|
- POSTGRES_USER=user
|
|
- POSTGRES_PASSWORD=pass
|
|
- POSTGRES_DB=webarc
|