2
0
mirror of https://github.com/hibiken/asynqmon.git synced 2026-02-05 03:21:25 +00:00
Files
asynqmon/Makefile
2021-10-12 15:35:56 -07:00

14 lines
298 B
Makefile

.PHONY: build docker
# Build a release binary.
build:
go build -o asynqmon ./cmd/asynqmon
# Build image and run Asynqmon server (with default settings).
docker:
docker build -t asynqmon .
docker run --rm \
--name asynqmon \
-p 8080:8080 \
asynqmon --redis-addr=host.docker.internal:6379