This commit is contained in:
2021-08-17 16:37:14 -05:00
commit bc3f010a5a
8 changed files with 163 additions and 0 deletions

25
docker-compose.yml Normal file
View File

@@ -0,0 +1,25 @@
version: "3.4"
services:
db:
image: postgres
volumes:
- "./db:/docker-entrypoint-initdb.d"
networks:
- default
ports:
- "5433:5432"
environment:
- "POSTGRES_DB=demo"
- "POSTGRES_USER=admin"
- "POSTGRES_PASSWORD=admin_pass"
ui:
image: adminer
restart: always
networks:
- default
ports:
- "8081:8080"
depends_on:
- db