feat(docker): add build and run shell scripts
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
# scripts/docker_build.sh
|
||||
# Build the Manual Slop Docker image.
|
||||
set -euo pipefail
|
||||
|
||||
cd "$(dirname "$0")/.."
|
||||
|
||||
docker build -t manual_slop:latest .
|
||||
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/env bash
|
||||
# scripts/docker_run.sh
|
||||
# Run the Manual Slop container.
|
||||
set -euo pipefail
|
||||
|
||||
cd "$(dirname "$0")/.."
|
||||
|
||||
docker compose up -d
|
||||
Reference in New Issue
Block a user