mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-14 22:08:45 +00:00
레포지토리 레이어의 코드를 Kysely 기반으로 모두 마이그레이션 (WiP)
This commit is contained in:
15
docker-compose.dev.yaml
Normal file
15
docker-compose.dev.yaml
Normal file
@@ -0,0 +1,15 @@
|
||||
services:
|
||||
database:
|
||||
image: postgres:17.2
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- database:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_USER=${DATABASE_USER:-}
|
||||
- POSTGRES_PASSWORD=${DATABASE_PASSWORD:?} # Required
|
||||
- POSTGRES_DB=${DATABASE_NAME:-}
|
||||
ports:
|
||||
- ${DATABASE_PORT:-5432}:5432
|
||||
|
||||
volumes:
|
||||
database:
|
||||
Reference in New Issue
Block a user