1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Makefile for IronCrypt Docker management
# --- Variables ---
# Default environment file for development
ENV_FILE ?=
# Production environment file
PROD_ENV_FILE ?=
# Use Docker Compose V2 syntax, which is now standard.
COMPOSE =
:
# --- Main Targets ---
# Default target when running 'make'
:
# Build the Docker images without starting the containers
:
# Start services in development mode (runs in foreground)
:
# Start services in production mode (runs in foreground)
:
# --- Utility Targets ---
# Stop the running containers
:
# Follow the logs of running services (if they are detached)
:
# Clean up everything: stop containers, remove volumes, and prune the system
# WARNING: This is a destructive operation.
:
:
: