-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (28 loc) · 1.24 KB
/
Makefile
File metadata and controls
39 lines (28 loc) · 1.24 KB
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
build:
docker build -t externalstructureproxy .
server:
docker run --rm -d -p 5010:5000 --rm --name externalstructureproxy externalstructureproxy /app/run_production_server.sh
interactive:
docker run --rm -it -p 5010:5000 --rm --name externalstructureproxy externalstructureproxy /app/run_production_server.sh
dev-server:
docker run --rm -it -p 5010:5000 --rm --name externalstructureproxy externalstructureproxy /app/run_server.sh
bash:
docker run --rm -it -p 5010:5000 --rm --name externalstructureproxy externalstructureproxy bash
server-compose-build:
docker-compose --compatibility build
server-compose-background:
docker-compose --compatibility build
docker-compose --compatibility up -d
server-compose-interactive:
docker-compose --compatibility build
docker-compose --compatibility up
server-compose-production:
docker-compose --compatibility build
docker-compose -f docker-compose.yml -f docker-compose-production.yml --compatibility up -d
server-compose-production-interactive:
docker-compose build
docker-compose -f docker-compose.yml -f docker-compose-production.yml --compatibility up
init_modules:
git submodule update --init --recursive
attach-library:
docker exec -i -t externalstructureproxy-library_generation_worker /bin/bash