Writing a project readme

This commit is contained in:
Dale Davies
2022-02-04 12:16:47 +00:00
committed by GitHub
parent 5dd3c6e852
commit cba2182b2d

29
README.md Normal file
View File

@@ -0,0 +1,29 @@
# Jump
Jump is yet another self-hosted startpage for your server, designed to be simple to set up and deploy.
## Installation
### Docker
You can pull the daledavies/jump image direct from Docker Hub and use docker cli to run but my personal preference is docker-compose.
The following will start Jump servinge on http://localhost:8123 with a custom site name, mapping the backgrounds and sites directory locally...
```yaml
version: '3'
services:
web:
image: daledavies/jump
ports:
- 8123:8080
volumes:
- ./backgrounds:/var/www/html/assets/backgrounds
- ./sites:/var/www/html/sites
environment:
SITENAME: 'Custom site name'
```