Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

restore launch command #120

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ services:
- *airstack-dev-image
entrypoint: ""
# we use tmux send-keys so that the session stays alive
# command: >
# bash -c "ssh service restart;
# tmux new -d -s robot_bringup
# && tmux send-keys -t robot_bringup 'ros2 launch robot_bringup robot.launch.xml' ENTER
# && sleep infinity"
command: >
bash -c "ssh service restart;
tmux new -d -s robot_bringup
&& tmux send-keys -t robot_bringup 'ros2 launch robot_bringup robot.launch.xml' ENTER
&& sleep infinity"
# Interactive shell
stdin_open: true # docker run -i
tty: true # docker run -t
Expand Down