WORK IN PROGRESS
This image runs Backdrop CMS (php/apache) and it requires a MySQL database to connect to. I recommend using docker-compose to start both this image and MySQL.
docker-compose.ymlversion: '3'
services:
backdrop:
image: kgolding/backdrop
links:
- db:mysql
ports:
- 8080:80
volumes:
- html:/var/www/html
db:
image: mysql:8
command: --default-authentication-plugin=mysql_native_password
volumes:
- mysql:/var/lib/mysql
environment:
MYSQL_USER: backdrop
MYSQL_PASSWORD: backdrop
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: backdrop
volumes:
html:
mysql:
Save the above file into a directory, and from the same directory run docker-compose -d up and browse to http://localhost:8080/
During the installation using the following database settings:
Content type
Image
Digest
Size
152.7 MB
Last updated
over 5 years ago
docker pull kgolding/backdrop