docker-steemd/Makefile

16 lines
198 B
Makefile
Raw Permalink Normal View History

2016-08-18 10:19:41 +00:00
default: build
2016-09-02 03:03:30 +00:00
build:
2016-08-18 11:50:02 +00:00
docker build \
-t sneak/steemd \
$(BUILD_ARGS) \
.
2016-08-18 10:19:41 +00:00
run: kill
2016-09-02 03:17:33 +00:00
envdir ~/.paths/steem-secrets \
2016-09-02 03:03:30 +00:00
docker-compose up -d
2016-08-18 10:19:41 +00:00
kill:
2016-09-02 03:03:30 +00:00
docker-compose kill
docker-compose rm -f