Closed takuti closed 6 years ago
Since docker-compose.yml does not set container name, docker exec -it hiver-server is impossible. Alternatively, we should pass container ID of the service as:
docker-compose.yml
docker exec -it hiver-server
$ docker exec -it $(docker-compose ps -q hive-server) bash
Additionally, now docker-compose exec is more straightforward and easy-to-use option. So, this PR updates README so.
docker-compose exec
@takuti indeed it is more straightforward now. Thanks for the input.
Since
docker-compose.yml
does not set container name,docker exec -it hiver-server
is impossible. Alternatively, we should pass container ID of the service as:Additionally, now
docker-compose exec
is more straightforward and easy-to-use option. So, this PR updates README so.