diff options
Diffstat (limited to 'compose.yaml')
-rw-r--r-- | compose.yaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compose.yaml b/compose.yaml index 4206716..d1544a0 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,12 +1,15 @@ services: db: - image: postgres:16-alpine + build: + context: . + dockerfile: Dockerfile.postgres ports: - 5432:5432 environment: - POSTGRES_PASSWORD=secret volumes: - dbasik_data:/var/lib/postgresql/data + - ./migrations:/dbasik app: build: context: . |