This commit is contained in:
Kiss Dávid
2025-07-18 10:27:33 +02:00
commit 590adb271d
40 changed files with 8792 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
services:
db:
image: postgres
ports:
- 5432:5432
restart: always
# set shared memory limit when using docker compose
shm_size: 128mb
# or set shared memory limit when deploy via swarm stack
#volumes:
# - type: tmpfs
# target: /dev/shm
# tmpfs:
# size: 134217728 # 128*2^20 bytes = 128Mb
environment:
POSTGRES_PASSWORD: Paprika_2025
POSTGRES_USER: paprika
POSTGRES_DB: paprika
adminer:
image: adminer
restart: always
ports:
- 8080:8080