https://github.com/squaremo/microwiki
Example for flux, mainly
https://github.com/squaremo/microwiki
Last synced: 2 months ago
JSON representation
Example for flux, mainly
- Host: GitHub
- URL: https://github.com/squaremo/microwiki
- Owner: squaremo
- Created: 2016-02-03T12:41:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-03T12:41:43.000Z (over 10 years ago)
- Last Synced: 2025-08-16T22:33:51.959Z (10 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Micro-service wiki example application
This is an eventually-over-engineered wiki.
## Build and run
```
docker build microwiki-standalone .
```
That will build an image of the standalone wiki (it's a single file,
and has to dependencies outside NodeJS's standard library).
```
docker run --name wiki -d -p 80 microwiki-standalone
docker port wiki 80
```
That will run the image in a container named `'wiki'`, amd publish its
port 80 to the host. The second command tells you which *host* port
maps to the container port. You can then open a browser or `curl` to
`http://localhost:`.