mirror of
https://github.com/jarulsamy/Plex-Bot.git
synced 2024-08-19 15:01:55 +02:00
✨ Makefile for dev and prod envs
This commit is contained in:
17
Makefile
Normal file
17
Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
.PHONY: help pull build clean
|
||||
.DEFAULT_GOAL: build
|
||||
|
||||
help:
|
||||
@echo "make pull"
|
||||
@echo " Start docker container with pull"
|
||||
@echo "make build"
|
||||
@echo " Start docker container rebuilding container"
|
||||
|
||||
pull:
|
||||
docker-compose up
|
||||
|
||||
build:
|
||||
docker-compose -f docker-compose_dev.yml up --build
|
||||
|
||||
clean:
|
||||
docker system prune -a
|
Reference in New Issue
Block a user