tmux new -s mysession
tmux a -t mysession
tmux a
Execute an interactive bash shell on the container
docker exec -it app-accounting bash
Remove unused volumes
$ docker volume rm (docker volume ls -q -f dangling=true)
Remove all images
Use the xattr command. You can inspect the extended attributes:
$ xattr s.7z
com.apple.metadata:kMDItemWhereFroms
com.apple.quarantine
and use the -d option to delete one extended attribute:
$ xattr -d com.apple.quarantine s.7z
$ xattr s.7z