feat: add cocker-compose yaml
This commit is contained in:
17
docker-compose.test.yaml
Normal file
17
docker-compose.test.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:15-alpine
|
||||
container_name: mixvideo_postgres_test
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
POSTGRES_PASSWORD: mixvideo_password
|
||||
POSTGRES_DB: mixvideo
|
||||
POSTGRES_USER: mixvideo_user
|
||||
ports:
|
||||
- "5433:5432"
|
||||
volumes:
|
||||
- postgres_test_data:/var/lib/postgresql/data
|
||||
|
||||
volumes:
|
||||
postgres_test_data:
|
||||
driver: local
|
||||
Reference in New Issue
Block a user