Last active 1774098992 Unlisted

A simple docker-compose file for Madblog (https://git.fabiomanganiello.com/madblog)

Revision 7eb5d79ea2192ec26e5aef9f912d052d19844758

docker-compose.yml Raw
1services:
2 madblog:
3 image: quay.io/blacklight/madblog
4 ports:
5 - "127.0.0.1:8000:8000"
6 volumes:
7 # Base data directory
8 # Prepare the volumes with:
9 # mkdir -p data/markdown
10 # mkdir -p config
11 # Your configuration will be under ./config/config.yaml
12 # Your posts will be under ./data/markdown
13 - ./data:/data
14 - ./config:/etc/madblog