forked from pen/docker-rep2
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (32 loc) · 917 Bytes
/
Copy pathMakefile
File metadata and controls
45 lines (32 loc) · 917 Bytes
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
up:
docker compose up -d
up-build:
docker compose up -d --build
down:
docker compose down
pull:
docker compose pull
build-base:
docker build -t ghcr.io/fukumen/rep2-base:latest -f docker/Dockerfile.base .
docker image prune -f
build-base-extra:
docker build -t ghcr.io/fukumen/rep2-base-extra:latest --build-arg FLAG_EXTRA=true -f docker/Dockerfile.base .
docker image prune -f
build:
docker build -t ghcr.io/fukumen/rep2:latest -f docker/Dockerfile .
docker image prune -f
build-extra:
docker build -t ghcr.io/fukumen/rep2-extra:latest --build-arg FLAG_EXTRA=true -f docker/Dockerfile .
docker image prune -f
config:
docker compose config
logs:
docker compose logs -f
exec:
docker compose exec rep2php8 /bin/sh
confdiff:
docker compose exec rep2php8 diff /var/www/conf.orig /ext/conf | iconv -f SHIFT_JIS -t UTF-8
clean:
docker image prune -f
docker builder prune -a
-include local.mk