Skip to content

Commit

Permalink
Fix container name format
Browse files Browse the repository at this point in the history
  • Loading branch information
k-ishigaki committed Aug 27, 2023
1 parent eea7a52 commit e91bcda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ x-common-options: &common-options
{ \
echo '#!/bin/sh -e'; \
echo 'if [ -t 1 ]; then tty_option=-t; fi'; \
echo 'exec docker exec -i $$tty_option -w $$PWD '"${COMPOSE_PROJECT_NAME}_$${service_name}_1 $${command}"' "$$@"'; \
echo 'exec docker exec -i $$tty_option -w $$PWD '"${COMPOSE_PROJECT_NAME}-$${service_name}-1 $${command}"' "$$@"'; \
} | sudo tee /usr/local/bin/$$command_name
sudo chmod +x /usr/local/bin/$$command_name
done
Expand Down

0 comments on commit e91bcda

Please sign in to comment.