This commit is contained in:
myve 2024-08-10 09:07:11 +00:00
commit e650d80b1e
58 changed files with 1747 additions and 0 deletions

9
usememos/.env Normal file
View file

@ -0,0 +1,9 @@
# Environment file for docker-compose.yaml
# Generate new passwords with:
# openssl rand -hex 32
# Fill in registry
REGISTRY=
# Memos
MEMOS_PORT=

View file

@ -0,0 +1,17 @@
services:
# memos (https://www.usememos.com/docs/install/self-hosting)
memos:
image: ${REGISTRY}/memos
container_name: memos
restart: unless-stopped
ports:
- ${MEMOS_PORT:-5230}:5230
volumes:
- ./data:/var/opt/memos
networks:
- memos
networks:
memos:
external: false