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

https://github.com/initdc/kodbox-docker

kodbox runing on docker
https://github.com/initdc/kodbox-docker

Last synced: about 1 month ago
JSON representation

kodbox runing on docker

Awesome Lists containing this project

README

          

# kodbox on docker

the kodbox runing on `php + nginx + sqlite + redis`

## docker run

quick start

```
docker run -dp 80:80 initdc/kodbox
```

keep files with custom directory

```c
// cd to custom dir you want
cd /root

mkdir -p data data/files
```

```
docker run -p 80:80 -v /root/data/files:/var/www/kodbox/data/files initdc/kodbox
```

## docker-compose

create a file named `docker-compose.yml`

copy the following content to it

```
services:
image: initdc/kodbox
ports:
- 80:80
volumes:
- /root/data/files:/var/www/kodbox/data/files
```

then run with

```
docker-compose up -d
```

## Contributing

[nocode](https://github.com/kelseyhightower/nocode) Thanks for readme template.