I have a Raspberry Pi with Ubuntu Snappy on it.
I've installed minecraft server with
 docker pull itzg/minecraft-server
Following the instructions from https://hub.docker.com/r/itzg/minecraft-server/ I try to run
docker run -d -p 25565:25565 --name mc itzg/minecraft-server
or
   docker run -d -it -e EULA=TRUE -p 25565:25565 --name mc itzg/minecraft-server
However I get the following error:
$ docker run -d -it -e EULA=TRUE -p 25565:25565 --name mc itzg/minecraft-server
FATA[0000] Error response from daemon: Conflict. The name "mc" is already in use by container a401d710b3c3. You have to delete (or rename) that container to be able to reuse that name. 
However, the docker ps reports no instance running
$ docker ps
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
I did try to rename it to mc2 as the error suggests, but the result is only more errors 
Core question is, how do I properly make the minecraft-server run and resolve the error above ?
It is my first experience with docker, so please explain as clearly as possible.
Additional info :
$ docker ps -a
CONTAINER ID        IMAGE                          COMMAND             CREATED             STATUS              PORTS               NAMES
08b7682eb487        itzg/minecraft-server:latest   "mc:latest"         38 minutes ago                                              cranky_rosalind     
d913adca07da        itzg/minecraft-server:latest   "mc"                39 minutes ago                                              furious_yonath      
e7fba87a02e4        itzg/minecraft-server:latest   "/start"            40 minutes ago                                              mc2                 
c3f3a1af49e3        itzg/minecraft-server:latest   "mc"                49 minutes ago                                              lonely_turing       
a401d710b3c3        itzg/minecraft-server:latest   "/start"            About an hour ago                                           mc                  
456bb2e52d8d        itzg/minecraft-server:latest   "/start"            About an hour ago                                           furious_bohr        
