Skip to content

unoexperto/docker-ssdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ef214f9 · Mar 15, 2020

History

4 Commits
Mar 15, 2020
Mar 15, 2020
Mar 30, 2017

Repository files navigation

Docker image for SSDB

This repository contains Dockerfile to build an image that dock SSDB service.

Usage

Build this image

The pre-built image is published in Docker Hub with name expert/ssdb

To build it yourself, run this command on project directory:

$ docker build -t <your_image_name_here>[:<tag name>] .

Run service

Run with default configuration:

$ docker run -d -p 8888:8888 expert/ssdb 

NOTE: Replace -p 8888:8888 with -p <your_external_port>:8888

Run with custom configuration

$ docker run -d --name <your_container_name> \
	-p <your_external_port>:8888 \
	-v <data_folder_on_host>:/usr/local/ssdb/var/data:rw \
	-v <meta_folder_on_host>:/usr/local/ssdb/var/meta:rw \
	[-v <location_of_config_file_on_host>:/usr/local/ssdb/ssdb.conf] \
	expert/ssdb

By default logs are written to stdout

About

Docker image for SSDB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published