-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
27 lines (20 loc) · 921 Bytes
/
Makefile
File metadata and controls
27 lines (20 loc) · 921 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
build:
docker build -t gnpslibrary .
bash:
docker run -it --rm gnpslibrary /bin/bash
server-compose-build-nocache:
docker-compose --compatibility build --no-cache
server-compose-interactive:
docker-compose -f docker-compose.yml -f docker-compose-dev.yml --compatibility build
docker-compose -f docker-compose.yml -f docker-compose-dev.yml --compatibility up
server-compose:
docker-compose -f docker-compose.yml -f docker-compose-dev.yml --compatibility build
docker-compose -f docker-compose.yml -f docker-compose-dev.yml --compatibility up -d
server-compose-production:
docker-compose --compatibility build
docker-compose --compatibility -f docker-compose.yml -f docker-compose-prod.yml up -d
server-compose-production-interative:
docker-compose --compatibility build
docker-compose --compatibility -f docker-compose.yml -f docker-compose-prod.yml up
attach:
docker exec -i -t mod-site /bin/bash