-
Notifications
You must be signed in to change notification settings - Fork 13
fix(docker-compose): re-running up.sh after clean.sh raises an error #1842
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
Conversation
This is also consistent with rest of volumes in compose files
1. Access the Docker container shell using: | ||
|
||
```bash | ||
docker compose -f flex-mysql-compose.yml exec flex /bin/bash #This opens a bash terminal in the running container |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't it using exec -ti
to get interactive shell?
``` | ||
|
||
## Configure Gluu flex | ||
|
||
1. Access the Docker container shell using: | ||
|
||
```bash | ||
docker compose -f flex-mysql-compose.yml exec flex sh #This opens a bash terminal in the running container | ||
docker compose -f flex-mysql-compose.yml exec flex /bin/bash #This opens a bash terminal in the running container |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't it using exec -ti
to get interactive shell?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
1. Access the Docker container shell using: | ||
|
||
```bash | ||
docker compose -f flex-mysql-compose.yml exec flex /bin/bash #This opens a bash terminal in the running container |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't it using exec -ti
to get interactive shell?
closes #1841