feature: show pools apr

This commit is contained in:
Claudio Ramos
2021-08-15 02:21:39 -03:00
parent c1129b9953
commit 9e96a3664b
17 changed files with 996 additions and 145 deletions

23
docker-compose.yaml Normal file
View File

@@ -0,0 +1,23 @@
version: "3"
services:
web:
ports:
- "3000:3000"
environment:
- DATABASE_URL=postgres://postgres:postgres@db:5432/postgres
image: xstake
depends_on:
- db
volumes:
- ./:/usr/src/app/
db:
image: postgres
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- "5432:5432"
volumes:
- "data:/var/lib/postgresql/data"
volumes:
data: