initial commit

This commit is contained in:
Ken Yasue
2025-06-01 22:21:33 +02:00
commit 5149012dcf
30 changed files with 6346 additions and 0 deletions

22
docker-compose.yaml Normal file
View File

@ -0,0 +1,22 @@
version: '3.8'
services:
db:
image: postgres:15
restart: always
environment:
POSTGRES_DB: photo
POSTGRES_USER: test
POSTGRES_PASSWORD: test
ports:
- "5432:5432"
volumes:
- ./data:/var/lib/postgresql/data
adminer:
image: adminer
restart: always
ports:
- "8080:8080"
depends_on:
- db