mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
13 lines
233 B
Bash
Executable file
13 lines
233 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Run the Docker container
|
|
docker run \
|
|
--rm \
|
|
-v "$PWD/website:/site" \
|
|
-p 4000:4000 \
|
|
-e HISTFILE=/site/.bash_history \
|
|
-it \
|
|
my-jekyll-site
|
|
|
|
# --entrypoint /bin/bash \
|
|
|