website/run.sh
2025-02-12 21:42:57 +01:00

17 lines
258 B
Bash
Executable File

#!/bin/bash
set -e
# Compile the minishell project
make -C minishell/minishell_src
# stop containers if running
docker compose down -v
# remove volumes
docker volume prune -f
docker image rm website-minishell -f
# start the containers
docker compose up