initial commit

This commit is contained in:
DecDuck
2024-09-28 19:12:11 +10:00
commit e1a789fa36
28 changed files with 5669 additions and 0 deletions

23
dev-tools/compose.yml Normal file
View File

@ -0,0 +1,23 @@
services:
postgres:
image: postgres:14-alpine
ports:
- 5432:5432
volumes:
- ../.data/db:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=drop
- POSTGRES_USER=drop
- POSTGRES_DB=drop
minio:
# honestly no idea where this image comes from
image: quay.io/minio/minio
ports:
- 9000:9000
- 9001:9001
volumes:
- ../.data/s3:/data
environment:
- MINIO_ROOT_USER=drop
- MINIO_ROOT_PASSWORD=drop
command: server /data --console-address ":9001"