Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 969 Bytes

README.md

File metadata and controls

55 lines (35 loc) · 969 Bytes

c3-next-docker

Installation

Install from Docker Hub or build from Dockerfile:

docker pull ifunsofware/c3-next

or

git clone https://github.com/ifunsofware/c3-next-docker.git
cd c3-next-docker
docker build -t ifunsoftware/c3-next .

Run

docker run -d -p 8082:22 -p 8080:8080 -p 7375:7375 -p 8443:8443 ifunsoftware/c3-next

To have a system with persistent state, create a dir for config and data (like /var/lib/c3) and pass it in command line with volume argument:

docker run -d -p 8082:22 -p 8080:8080 -p 8443:8443 -p7375:7375 -v /var/lib/c3:/opt/c3 ifunsoftware/c3-next

How To Access

C3 Management Console

http://<your-server>:8080/manage/

Basic Auth credentials:

  • login: admin
  • password: password

SSH

ssh -p 8022 root@<your-server>

  • 'root' password: password

API

TODO

About image

Base image of this Docker container: https://github.com/ifunsoftware/c3-base-docker