forked from workfromcafe/meraki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
48 lines (34 loc) · 1.49 KB
/
makefile
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
DOCKER_FILE := ./docker/Dockerfile
DOCKER_FILE_DEV := ./docker/Dockerfile.dev
DOCKER_APP_NAME := meraki
DOCKER_DEV := -f docker-compose.yml
DOCKER_DEV_EXEC := ${DOCKER_DEV} exec ${DOCKER_APP_NAME}
DOCKER_IMAGES := meraki:latest
DOCKER_IMAGES_DEV := meraki-dev:latest
SHELL=bash
###################################################################################################
## INITIALISATION
###################################################################################################
export DOCKER_BUILDKIT=1
export COMPOSE_DOCKER_CLI_BUILD=1
###################################################################################################
## DEV
###################################################################################################
.PHONY: build-dev build-dev-no-cache build-test start start-detached stop shell
build: ##@dev Build the application for dev
docker compose build
build-no-cache: ##@dev Build the application for dev without using cache
docker compose build --no-cache
build-test: ##@dev Build the application to run tests
docker build \
--build-arg NODE_ENV=production \
--target test \
-t app-test:1.00 .
start: ##@dev Start the development environment
docker compose up
start-d: ##@dev Start the development environment (detached)
docker compose up -d
stop: ##@dev Stop the development environment
docker compose down
shell: ##@dev Go into the running container (the app name should match what's in docker-compose.yml)
docker compose exec app /bin/sh