You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
416 B

NAME = transcendence
USER = gavaniwast
all: clean start
start:
2 years ago
BACK_RUN=start docker compose -f docker-compose.yml up --build
debug:
2 years ago
BUILDKIT_PROGRESS=plain BACK_RUN=start:debug docker compose -f docker-compose.yml up --build
stop:
2 years ago
docker compose -f docker-compose.yml down
clean: stop
2 years ago
docker system prune -f
fclean: stop
rm -rf volumes/*/node_modules
2 years ago
docker system prune -af --volumes
re: fclean start