Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.