chore: postpone test

This commit is contained in:
Vlad Stan
2026-03-23 12:32:39 +02:00
parent 9f9f14ead0
commit 19d3e9e64e
2 changed files with 47 additions and 14 deletions
+24
View File
@@ -0,0 +1,24 @@
networks:
lnbits-net:
services:
postgres-db:
container_name: postgres_container_test
image: postgres:14
environment:
POSTGRES_DB: lnbits
POSTGRES_USER: lnbits
POSTGRES_PASSWORD: lnbits
PGDATA: /lnbits/data/postgres
volumes:
- ./data/postgres_test:/lnbits/data/postgres
ports:
- "5444:5432"
restart: unless-stopped
healthcheck:
test: ["CMD-SHELL", "pg_isready -d lnbits_db"]
interval: 5s
timeout: 5s
retries: 5
networks:
- lnbits-net