with base

This commit is contained in:
2022-10-02 12:12:08 +02:00
commit 351b92e54b
20 changed files with 2422 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
version: '3.7'
services:
db:
image: postgres:13.5
restart: always
environment:
- POSTGRES_DB=como
- POSTGRES_USER=como
- POSTGRES_PASSWORD=somenotverysecurepassword
- DATABASE_URL="postgres://como:somenotverysecurepassword@localhost:5432/como"
ports:
- 5432:5432
volumes:
- ./data/postgres:/var/lib/postgresql/data