19 lines
376 B
YAML
19 lines
376 B
YAML
version: '3.3'
|
|
services:
|
|
siyuan:
|
|
container_name: siyuan
|
|
restart: unless-stopped
|
|
volumes:
|
|
- './data:/siyuan/workspace'
|
|
ports:
|
|
- '6806:6806'
|
|
image: b3log/siyuan
|
|
command: --workspace=/siyuan/workspace/ --servePath=yourdomain.com --ssl=true
|
|
networks:
|
|
nginx:
|
|
aliases:
|
|
- siyuan
|
|
|
|
networks:
|
|
nginx:
|
|
external: true |