how can I ssh into a service created by docker swarm? I have created a service using docker stack and the yaml file looks like this:
version: '3'
services:
app:
image: "myimage1"
expose:
- "8080"
and I validated that the service is running but I'm not sure how to ssh into the service(container) that was created.