Renamed Project to cntmanage

This commit is contained in:
2025-11-18 23:28:50 +01:00
parent 9cae53a942
commit 491afb6257
77 changed files with 6 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
# Use postgres/example user/password credentials
version: '3.9'
services:
postgresql:
image: postgres:17.0
container_name: tech-postgresql
restart: always
# set shared memory limit when using docker-compose
shm_size: 128mb
volumes:
- /mnt/data/postgresql:/var/lib/postgresql/data
ports:
- 5432:5432
environment:
POSTGRES_USER: tech
POSTGRES_PASSWORD: tech
POSTGRED_DB: techstorage
PGDATA: /var/lib/postgresql/data