Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beginor/docker-jexus-x64
Jexus x64 Standalone for Linux docker image
https://github.com/beginor/docker-jexus-x64
Last synced: 8 days ago
JSON representation
Jexus x64 Standalone for Linux docker image
- Host: GitHub
- URL: https://github.com/beginor/docker-jexus-x64
- Owner: beginor
- Created: 2017-05-03T03:06:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-19T06:46:09.000Z (over 3 years ago)
- Last Synced: 2023-03-22T10:55:21.755Z (over 1 year ago)
- Language: Shell
- Size: 15.6 KB
- Stars: 13
- Watchers: 2
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jexus x64 Pro (Standalone) in docker
## Version Info:
- Jexus x64 Pro (Standalone) 6.3.2021.0512
- debian:buster-slim## Usage:
1. Get the image with command:
```sh
docker pull beginor/jexus-x64:6.3.2021.0512
```2. Prepare the directors for volumes:
```sh
mkdir -p "$(pwd)/jexus/conf"
mkdir -p "$(pwd)/jexus/www"
mkdir -p "$(pwd)/jexus/log"
```3. Copy your website config file to `$(pwd)/jexus/conf` folder, Copy your websites to `$(pwd)/jexus/www` folder
4. Run the image with command:
```sh
docker run \
--detach \
--name jexus \
--restart unless-stopped \
--publish 8080:80 \
--volume $(pwd)/jexus/www:/var/www \
--volume $(pwd)/jexus/conf:/usr/jexus/siteconf \
--volume $(pwd)/jexus/log:/usr/jexus/log \
beginor/jexus-x64:6.3.2021.0512
```5. Then browse [http://127.0.0.1:8080/info](http://127.0.0.1:8080/info) with your faverite borwser, see what happens.
> You can change the port 8080 as your like.