30 lines
766 B
YAML
30 lines
766 B
YAML
services:
|
|
redis:
|
|
image: redis
|
|
container_name: redis
|
|
healthcheck:
|
|
test: ['CMD', 'redis-cli', '--raw', 'incr', 'ping']
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
restart: unless-stopped
|
|
|
|
postgres:
|
|
image: pgvector/pgvector:pg16
|
|
container_name: postgres
|
|
volumes:
|
|
- /home/adrien/Web-stack/hdd0/postgres:/var/lib/postgresql/data
|
|
environment:
|
|
POSTGRES_USER: ${DB_USERNAME}
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
POSTGRES_DB: affine
|
|
POSTGRES_INITDB_ARGS: '--data-checksums'
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
healthcheck:
|
|
test:
|
|
['CMD', 'pg_isready', '-U', "${DB_USERNAME}", '-d', "affine"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
restart: unless-stopped
|