From 88e6707cfed6b2b548a76097a2f1358524f4981b Mon Sep 17 00:00:00 2001 From: whitney Date: Sat, 11 Jan 2025 11:22:55 -0800 Subject: [PATCH] Update Makefile --- Makefile | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index deb44fd..d164c22 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -MODULES = traefik code-server covid19 gitea grafana homepage jenkins minecraft monica nordvpn photoprism plex portainer +MODULES = traefik code-server covid19 gitea grafana homepage minecraft nordvpn photoprism plex DOCKER_COMPOSE_DOWN = docker-compose down DOCKER_PRUNE = docker system prune -f DOCKER_COMPOSE_UP = docker-compose up -d @@ -9,7 +9,10 @@ DOCKER_NETWORK_CREATE = docker network create .PHONY: $(MODULES) -all: $(MODULES) +all: network $(MODULES) + +network: + $(DOCKER NETWORK CREATE) traefik code-server: cd code-server && $(DOCKER_BUILD) @@ -28,15 +31,9 @@ grafana: minecraft homepage: cd homepage && $(DOCKER_BUILD) -jenkins: - cd jenkins && $(DOCKER_BUILD) - minecraft: cd minecraft && $(DOCKER_COMPOSE_UP) -monica: - cd monica && $(DOCKER_BUILD) - nordvpn: cd nordvpn && $(DOCKER_BUILD) @@ -46,9 +43,6 @@ photoprism: plex: cd plex && $(DOCKER_BUILD) -portainer: - cd portainer && $(DOCKER_BUILD) - traefik: cd traefik && $(DOCKER_COMPOSE_UP)