Initial commit

This commit is contained in:
2025-03-04 20:58:17 +02:00
parent ef2e780434
commit 09db1a8d08
13 changed files with 939 additions and 0 deletions

21
docker/memos/compose.yaml Normal file
View File

@@ -0,0 +1,21 @@
services:
memos:
image: neosmemo/memos:stable
restart: always
# depends_on:
# - db
ports:
- 5230:5230
environment:
- MEMOS_DRIVER=postgres
- MEMOS_DSN=user=memos password=memos dbname=memos host=10.0.6.178 sslmode=disable
# db:
# image: postgres:16.1
# restart: unless-stopped
# volumes:
# - "./database:/var/lib/postgresql/data/"
# environment:
# POSTGRES_USER: memos
# POSTGRES_PASSWORD: secret
# POSTGRES_DB: memosdb