feat!: initial prototype
This commit is contained in:
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
db:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: docker/db.Dockerfile
|
||||
container_name: db
|
||||
restart: always
|
||||
shm_size: 128mb
|
||||
volumes:
|
||||
- db_data:/var/lib/postgresql/data
|
||||
environment:
|
||||
POSTGRES_PASSWORD: dev_pw
|
||||
POSTGRES_USER: recipes
|
||||
ports:
|
||||
- "5432:5432"
|
||||
volumes:
|
||||
db_data:
|
||||
Reference in New Issue
Block a user