mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-11 18:16:24 +05:00
10 lines
231 B
Makefile
10 lines
231 B
Makefile
|
|
generate:
|
|
./build.sh
|
|
cp ../../conf/cgrates/cgrates.json ./cgrates.json
|
|
build:
|
|
docker build -t cgrates .
|
|
run: build
|
|
docker run --rm -itv `pwd`:/root/code -p 2080:2080 -p 2012:2012 --name cgr cgrates
|
|
.PHONY: generate,build,run
|