Sign inSign up

initdc/kodbox

By initdc

Updated over 4 years ago

KodBox - runing php + nginx + sqlite + redis on ubuntu 18.04 / 20.04

Image
1

1.3K

initdc/kodbox repository overview

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

// cd to custom dir you want
cd /root

mkdir 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 Thanks for readme template.

Tag summary

Content type

Image

Digest

Size

200.2 MB

Last updated

over 4 years ago

docker pull initdc/kodbox