@@ -97,35 +97,35 @@ update: dependencies outdated
97
97
upgrade : update
98
98
99
99
compose/build : env
100
- docker-compose --profile lint build
101
- docker-compose --profile testing build
102
- docker-compose --profile production build
100
+ ${DOCKER_COMPOSE} --profile lint build
101
+ ${DOCKER_COMPOSE} --profile testing build
102
+ ${DOCKER_COMPOSE} --profile production build
103
103
104
104
compose/rebuild : env
105
- docker-compose --profile lint build --no-cache
106
- docker-compose --profile testing build --no-cache
107
- docker-compose --profile production build --no-cache
105
+ ${DOCKER_COMPOSE} --profile lint build --no-cache
106
+ ${DOCKER_COMPOSE} --profile testing build --no-cache
107
+ ${DOCKER_COMPOSE} --profile production build --no-cache
108
108
109
109
compose/lint/markdown : compose/build
110
- docker-compose --profile lint build
111
- docker-compose --profile lint run --rm algorithm-exercises-js-lint make lint/markdown
110
+ ${DOCKER_COMPOSE} --profile lint build
111
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-js-lint make lint/markdown
112
112
113
113
compose/lint/yaml : compose/build
114
- docker-compose --profile lint run --rm algorithm-exercises-js-lint make lint/yaml
114
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-js-lint make lint/yaml
115
115
116
116
compose/test/styling : compose/build
117
- docker-compose --profile lint run --rm algorithm-exercises-js-lint make test/styling
117
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-js-lint make test/styling
118
118
119
119
compose/test/static : compose/build
120
- docker-compose --profile lint run --rm algorithm-exercises-js-lint make test/static
120
+ ${DOCKER_COMPOSE} --profile lint run --rm algorithm-exercises-js-lint make test/static
121
121
122
122
compose/lint : compose/lint/markdown compose/lint/yaml compose/test/styling compose/test/static
123
123
124
124
compose/test : compose/build
125
- docker-compose --profile testing run --rm algorithm-exercises-js-test make test
125
+ ${DOCKER_COMPOSE} --profile testing run --rm algorithm-exercises-js-test make test
126
126
127
127
compose/run : compose/build
128
- docker-compose --profile production run --rm algorithm-exercises-js make run
128
+ ${DOCKER_COMPOSE} --profile production run --rm algorithm-exercises-js make run
129
129
130
130
all : env dependencies test
131
131
0 commit comments