forked from scribeengine/scribeengine
40 lines
745 B
ReStructuredText
40 lines
745 B
ReStructuredText
ScribeEngine
|
|
============
|
|
|
|
ScribeEngine is a flexible open source content management system written in Python.
|
|
|
|
Get Started
|
|
-----------
|
|
|
|
The easiest way to get up and running is via a container system like Docker or podman. Use the
|
|
following compose file to get up and running:
|
|
|
|
.. code-block:: yaml
|
|
|
|
version: '3'
|
|
services:
|
|
web:
|
|
image: nginx
|
|
ports:
|
|
- 8080:80
|
|
depends_on:
|
|
- cms
|
|
cms:
|
|
image: scribeengine
|
|
depends_on:
|
|
- database
|
|
database:
|
|
image: postgres:14
|
|
|
|
Using Docker's Compose plugin, run the following command::
|
|
|
|
$ docker compose up -d
|
|
|
|
Using the Docker-Compose command::
|
|
|
|
$ docker-compose up -d
|
|
|
|
Using podman-compose::
|
|
|
|
$ podman-compose up -d
|