🎉 init

This commit is contained in:
JMARyA 2025-03-12 11:32:27 +01:00
commit e5135dc9e4
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
13 changed files with 4678 additions and 0 deletions

26
docker-compose.yml Normal file
View file

@ -0,0 +1,26 @@
services:
pacco:
build: .
ports:
- "8080:8000"
privileged: true
volumes:
- ./packages:/packages
- ./repositories:/repositories
- type: tmpfs
target: /build
tmpfs:
size: 42949672960 # 40GB
env_file: .env
postgres:
image: timescale/timescaledb:latest-pg16
restart: always
ports:
- 5432:5432
volumes:
- ./db:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=user
- POSTGRES_PASSWORD=pass
- POSTGRES_DB=pacco_makepkg