add categories table and local env

This commit is contained in:
2024-11-18 20:29:45 +07:00
parent 9a51201678
commit 6cfab72b9c
8 changed files with 65 additions and 6 deletions
+22
View File
@@ -0,0 +1,22 @@
version: '3.9'
services:
db:
container_name: db
image: postgres
restart: always
shm_size: 128mb
environment:
POSTGRES_USER: crab
POSTGRES_PASSWORD: crab
POSTGRES_DB: smm-core
ports:
- 5432:5432
adminer:
container_name: adminer
image: adminer
restart: always
ports:
- 8100:8080