initial docker setup

This commit is contained in:
2025-07-12 00:54:22 +02:00
parent 03c90491e8
commit 8e24bbd88a
3 changed files with 56 additions and 0 deletions

14
compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
services:
warren:
image: 'warren:latest'
container_name: 'warren'
build: '.'
postgres:
image: 'postgres:17'
container_name: 'warren-db'
volumes:
- './postgres-data:/var/lib/postgresql/data'
environment:
- 'POSTGRES_PASSWORD=pg'
ports:
- '5432:5432/tcp'