| 1 |
# LBBS-combo - Combination of all LeafOK BBS components
|
| 2 |
|
| 3 |
Chinese version of README.md is located at [README.zh_CN.md](README.zh_CN.md)
|
| 4 |
|
| 5 |
## Introduction
|
| 6 |
|
| 7 |
This package provides a pre-configured Docker-based running environment of LeafOK BBS, including both web version and telnet version, for testing or demo purposes.
|
| 8 |
|
| 9 |
## Installation
|
| 10 |
|
| 11 |
### Specify platforms of building targets and runtime version
|
| 12 |
```bash
|
| 13 |
export DOCKERHUB_PLATFORMS="linux/amd64"
|
| 14 |
export RUN_PLATFORM="linux/amd64"
|
| 15 |
```
|
| 16 |
|
| 17 |
### Option 1: Build from source
|
| 18 |
```bash
|
| 19 |
sh -x build.sh
|
| 20 |
```
|
| 21 |
|
| 22 |
### Option 2: Pull Docker image
|
| 23 |
```bash
|
| 24 |
docker compose pull
|
| 25 |
```
|
| 26 |
|
| 27 |
### Start the application
|
| 28 |
```bash
|
| 29 |
docker compose up -d
|
| 30 |
```
|
| 31 |
|
| 32 |
## Copyright
|
| 33 |
|
| 34 |
Copyright (C) 2004-2026 Leaflet <leaflet@leafok.com>
|
| 35 |
|
| 36 |
## License
|
| 37 |
|
| 38 |
This program is free software; you can redistribute it and/or modify it under the terms of the [GNU General Public License](LICENSE) as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
|