Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/astranchet/koken_bokeh_fr

Koken theme
https://github.com/astranchet/koken_bokeh_fr

Last synced: 26 days ago
JSON representation

Koken theme

Awesome Lists containing this project

README

        

## Run locally

### Installation

```sh
docker pull koken/koken-lemp
mkdir -p /data/koken/www
mkdir -p /data/koken/mysql
```

```sh
CID=$(docker run --restart=always -p 4444:8080 -v /data/koken/www:/usr/share/nginx/www -v /data/koken/mysql:/var/lib/mysql -d koken/koken-lemp /sbin/my_init)
IP=$(docker inspect $CID | grep IPAddress | cut -d '"' -f 4)
echo "Go to: http://$IP"
```