init: first steps
This commit is contained in:
16
docker-compose.yml
Normal file
16
docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
services:
|
||||
|
||||
postgresql:
|
||||
image: postgres:latest
|
||||
environment:
|
||||
- POSTGRES_USER=status
|
||||
- POSTGRES_DB=status
|
||||
- POSTGRES_PASSWORD=status
|
||||
- POSTGRES_HOST_AUTH_METHOD=trust
|
||||
volumes:
|
||||
- database_postgres:/var/lib/postgresql/data
|
||||
ports:
|
||||
- "5444:5432"
|
||||
|
||||
volumes:
|
||||
database_postgres:
|
||||
Reference in New Issue
Block a user