mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* Add Memos service and configuration files * Refactor docker-compose.yml: update environment variable syntax for Memos service * Update docker-compose.yml and template.toml: adjust environment variable syntax and change MEMOS_MODE value * Add GitLab CE entry to meta.json and update Memos version to latest
16 lines
275 B
YAML
16 lines
275 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
memos:
|
|
image: neosmemo/memos:stable
|
|
restart: unless-stopped
|
|
volumes:
|
|
- memos_data:/var/opt/memos
|
|
environment:
|
|
- MEMOS_MODE=${MEMOS_MODE}
|
|
- MEMOS_PORT=${MEMOS_PORT}
|
|
ports:
|
|
- "5230"
|
|
volumes:
|
|
memos_data:
|