File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -12,21 +12,21 @@ ifeq ($(origin .RECIPEPREFIX), undefined)
1212endif
1313.RECIPEPREFIX = >
1414
15- compose_command = docker- compose run -u $(id -u ${USER} ) :$(id -g ${USER} ) --rm php81
15+ compose_command = docker compose run -u $(id -u ${USER} ) :$(id -g ${USER} ) --rm php81
1616
1717build : tmp/.docker-built
1818
1919tmp/.docker-built : docker-compose.yml docker/php/81/Dockerfile
2020> mkdir -p $(@D) # Makes the tmp directory
21- > docker- compose build
21+ > docker compose build
2222> touch $@ # Touches the file that is this target.
2323
2424shell : build
2525> $(compose_command) bash
2626.PHONY : shell
2727
2828destroy :
29- > docker- compose down -v
29+ > docker compose down -v
3030> rm -rf tmp
3131.PHONY : destroy
3232
Original file line number Diff line number Diff line change 55# Run "docker-compose down -v" to fully wipe everything and start over.
66# Run "docker-compose run -u $(id -u ${USER}):$(id -g ${USER}) --rm php80 bash" to log into the container to run tests selectively.
77
8- version : " 3"
98services :
109 php81 :
1110 build : ./docker/php/81
You can’t perform that action at this time.
0 commit comments