Docker build refactor (#568)

This commit is contained in:
Dan Sosedoff
2022-06-27 22:31:57 -05:00
committed by GitHub
parent 193073727a
commit ae3b74ad2a
6 changed files with 148 additions and 13 deletions

41
docker-compose.yml Normal file
View File

@@ -0,0 +1,41 @@
---
version: "3.9"
services:
postgres:
container_name: pgweb-postgres
image: postgres:14
ports:
- 5433:5432
volumes:
- data:/var/lib/postgresql/data
environment:
POSTGRES_DB: pgweb
POSTGRES_PASSWORD: pgweb
POSTGRES_USER: pgweb
healthcheck:
test: pg_isready -U pgweb -h 127.0.0.1
interval: 5s
networks:
- pgweb
pgweb:
container_name: pgweb
image: sosedoff/pgweb:latest
environment:
DATABASE_URL: postgres://pgweb:pgweb@pgweb-postgres:5432/pgweb?sslmode=disable
ports:
- 8081:8081
networks:
- pgweb
depends_on:
postgres:
condition: service_healthy
volumes:
data:
name: pgweb_postgres
networks:
pgweb:
name: pgweb