mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 10:33:01 +00:00
basic db setup with drizzle
This commit is contained in:
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
@@ -0,0 +1,18 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
db:
|
||||
image: postgres:16-alpine
|
||||
container_name: eussi-db
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_USER: eussi
|
||||
POSTGRES_PASSWORD: password
|
||||
POSTGRES_DB: issue
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
postgres_data:
|
||||
Reference in New Issue
Block a user