10 lines
No EOL
318 B
YAML
10 lines
No EOL
318 B
YAML
version: '3.3'
|
|
services:
|
|
writefreely:
|
|
image: algernon/writefreely:latest # Example community image
|
|
container_name: writefreely
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./data:/data # Persistent storage for database and config
|
|
ports:
|
|
- "8765:8080" # Map host port 8080 to container port 8080 |