Files
cloudy/makefile
T
furyhawk f865ba6f16 Refactor docker-compose.yml to remove commented out port mapping for PostgreSQL
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
2024-05-30 09:00:29 +08:00

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