improved dockerfiles and developer setup

This commit is contained in:
Yannic Kilcher
2022-12-17 22:15:01 +01:00
parent edf123e451
commit b45a974287
37 changed files with 78 additions and 55 deletions
@@ -0,0 +1,17 @@
version: "3.7"
services:
db:
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
adminer:
image: adminer
restart: always
ports:
- 8089:8080