Initial commit with basic DB layout

This commit is contained in:
2023-01-03 15:16:10 +01:00
commit a9e300ede2
16 changed files with 330 additions and 0 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
version: '3'
x-logging: &default-logging
options:
max-size: "100m"
max-file: "5"
driver: json-file
services:
database:
image: postgres:15-alpine
container_name: ordabok_db
env_file: .env
restart: unless-stopped
volumes:
- ordabok_db_data:/var/lib/postgresql/data
ports:
- 5432:5432
volumes:
ordabok_db_data: