Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Makefile 321 B
build:
	docker build -t kuadradoimg .

run:
	docker run -p 80:80 \
	-it \
	--name kuadrado \
	--mount type=bind,source="$(shell pwd)/public",target=/usr/share/nginx/html \
	-d kuadradoimg

start:
	docker start kuadrado

stop:
	docker stop kuadrado

bash: 
	docker exec -it kuadrado bash

open:
	firefox http://localhost/