Last active 1774098992 Unlisted

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

Revision 1fe1a4ac9fffe04f2fc6c348707940365b11f993

docker-compose.yml Raw
1services:
2 madblog:
3 image: quay.io/blacklight/madblog
4 ports:
5 - "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