initial docker setup
This commit is contained in:
14
compose.yaml
Normal file
14
compose.yaml
Normal 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'
|
||||
Reference in New Issue
Block a user