f865ba6f16
Refactor compose/apps.yml to update URL with dynamic domain name Refactor traefik.yml to update routing rules for neo4j-bolt-router Refactor traefik.yml to fix routing rules for resume and blog subdomains Refactor makefile to use 'always' flag when running docker compose Refactor docker-compose.yml to update second volume path for custom configuration file Refactor docker-compose.yml to update MINIO_SERVER_URL and NEO4J_dbms.default_advertised_address Refactor traefik.yml to enable routing for neo4j subdomains Refactor traefik.yml to fix routing rules for resume and blog subdomains
16 lines
341 B
Makefile
16 lines
341 B
Makefile
# Makefile for the project
|
|
|
|
# Variables
|
|
|
|
# Commands
|
|
serve: pull
|
|
@echo "Serving the project..."
|
|
docker compose -f compose.yml up -d --build --pull always
|
|
down: pull
|
|
@echo "Stopping the project..."
|
|
docker compose -f compose.yml down --remove-orphans
|
|
|
|
pull:
|
|
@echo "Pulling the project..."
|
|
git pull
|
|
git submodule update --init --recursive
|