mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
18 lines
286 B
YAML
18 lines
286 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
hedgedoc:
|
|
image: ghcr.io/hedgedoc/hedgedoc:latest
|
|
container_name: hedgedoc
|
|
environment:
|
|
- CMD_DB_URL=sqlite://data/hedgedoc.db
|
|
volumes:
|
|
- ./data:/hedgedoc/data
|
|
ports:
|
|
- "3000:3000"
|
|
restart: always
|
|
|
|
volumes:
|
|
data:
|
|
|