aider/scripts/jekyll_run.sh
2024-07-05 13:30:18 -03:00

13 lines
239 B
Bash
Executable file

#!/bin/bash
# Run the Docker container
docker run \
--rm \
-v "$PWD/aider/website:/site" \
-p 4000:4000 \
-e HISTFILE=/site/.bash_history \
-it \
my-jekyll-site
# --entrypoint /bin/bash \