Skip to content

Commit

Permalink
Doc tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
NuSkooler committed Aug 19, 2022
1 parent 94145c0 commit d4341bf
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion core/scanner_tossers/ftn_bso.js
Original file line number Diff line number Diff line change
Expand Up @@ -1700,7 +1700,7 @@ function FTNMessageScanTossModule() {
uuid: message.messageUuid,
MSGID: msgId,
},
`Not importing non-unique message ${localAreaTag}: "${message.subject}"`
`Not importing non-unique message "${message.subject}" to ${localAreaTag}`
);

return next(null);
Expand Down
33 changes: 18 additions & 15 deletions docs/_docs/installation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
layout: page
title: Docker
---
**You'll need Docker installed before going any further. How to do so are out of scope of these docs, but you can find full instructions

> :warning: **You'll need Docker installed before going any further. How to do so are out of scope of these docs, but you can find full instructions
for every operating system on the [Docker website](https://docs.docker.com/engine/install/).**

## Quick Start
prepare a folder where you are going to save your bbs files.
- Generate some config for your BBS: \
you can perform this step from anywhere - but make sure to consistently run it from the same place to retain your config inside the docker guest
```
Prepare a folder where you are going to save your bbs files.

1. Generate some config for your BBS: \
You can perform this step from anywhere - but make sure to consistently run it from the same place to retain your config inside the docker guest.

```bash
docker run -it -p 8888:8888 \
--name "ENiGMABBS" \
-v "$(pwd)/config:/enigma-bbs/config" \
Expand All @@ -21,9 +24,10 @@ docker run -it -p 8888:8888 \
-v "$(pwd)/mail:/mail" \
enigmabbs/enigma-bbs:latest
```
- Run it: \
you can use the same command as above, just daemonize and drop interactiveness (we needed it for config but most of the time docker will run in the background)
````
2. Run it: \
You can use the same command as above, just daemonize and drop interactiveness (we needed it for config but most of the time docker will run in the background)

```bash
docker run -d -p 8888:8888 \
--name "ENiGMABBS" \
-v "$(pwd)/config:/enigma-bbs/config" \
Expand All @@ -34,9 +38,9 @@ docker run -d -p 8888:8888 \
-v "$(pwd)/mods:/enigma-bbs/mods" \
-v "$(pwd)/mail:/mail" \
enigmabbs/enigma-bbs:latest
````
- Restarting and Making changes\
if you make any changes to your host config folder they will persist, and you can just restart ENiGMABBS container to load any changes you've made.
```
### Restarting and Making changes\
If you make any changes to your host config folder they will persist, and you can just restart ENiGMABBS container to load any changes you've made.

```docker restart ENiGMABBS```

Expand Down Expand Up @@ -66,7 +70,6 @@ Customising the Docker image is easy!

1. Clone the ENiGMA-BBS source.
2. Build the image

```
docker build -f ./docker/Dockerfile .
```
```bash
docker build -f ./docker/Dockerfile .
```

0 comments on commit d4341bf

Please sign in to comment.