Skip to content

Commit 75caab8

Browse files
committed
chore: gitignore local dev Docker files (Dockerfile.local, docker-compose.local.yml)
1 parent 5a0374a commit 75caab8

5 files changed

Lines changed: 8 additions & 4 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ COLCON_IGNORE
3030
.coverage
3131
htmlcov/
3232

33+
# Local dev Docker files (not for CI/CD)
34+
Dockerfile.local
35+
docker-compose.local.yml
36+
3337
# Environment
3438
.env
3539
.venv/

demos/moveit_pick_place/inject-collision.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Inject Collision - Spawn a surprise obstacle in the robot's workspace
33
set -eu
44

5-
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?$' | head -n1)}"
5+
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?(_local)?$' | head -n1)}"
66
if [ -z "${CONTAINER}" ]; then
77
echo "❌ Demo container not running. Start it first: ./run-demo.sh"
88
exit 1

demos/moveit_pick_place/inject-planning-failure.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Inject Planning Failure - Block the robot's path with a collision wall
33
set -eu
44

5-
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?$' | head -n1)}"
5+
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?(_local)?$' | head -n1)}"
66
if [ -z "${CONTAINER}" ]; then
77
echo "❌ Demo container not running. Start it first: ./run-demo.sh"
88
exit 1

demos/moveit_pick_place/move-arm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
set -eu
1414

15-
CONTAINER="${CONTAINER_NAME:-moveit_medkit_demo}"
15+
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?(_local)?$' | head -n1)}"
1616
ACTION="/panda_arm_controller/follow_joint_trajectory"
1717
JOINT_NAMES='["panda_joint1","panda_joint2","panda_joint3","panda_joint4","panda_joint5","panda_joint6","panda_joint7"]'
1818

demos/moveit_pick_place/restore-normal.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Restore Normal Operation - Remove all injected faults
33
set -eu
44

5-
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?$' | head -n1)}"
5+
CONTAINER="${CONTAINER_NAME:-$(docker ps --format '{{.Names}}' | grep -E '^moveit_medkit_demo(_nvidia)?(_local)?$' | head -n1)}"
66
if [ -z "${CONTAINER}" ]; then
77
echo "❌ Demo container not running. Start it first: ./run-demo.sh"
88
exit 1

0 commit comments

Comments
 (0)