Aegea Docker Image: https://hub.docker.com/r/m4rr/blogengine-docker
version: '3.7'
services:
blog:
restart: unless-stopped
image: m4rr/blogengine-docker:latest
depends_on:
- db
db:
restart: unless-stopped
image: mariadb
environment:
MYSQL_ROOT_PASSWORD: $MYSQL_ROOT_PASSWORD
How to upgrade to the latest build if you're using the Usage Example above:
docker-compose up --force-recreate --build -d
Check out same config in production: blog.m4rr.ru.