Advertisement
nsaunders

Untitled

Sep 24th, 2020
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. root $
  2. root $ docker images redis
  3. REPOSITORY TAG IMAGE ID CREATED SIZE
  4. redis alpine bd71e6db4a54 2 weeks ago 32.2MB
  5. redis latest 84c5f6e03bf0 2 weeks ago 104MB
  6. root $
  7. root $ docker run --name rd -d -p 99:99 redis:latest
  8. ac4b8b2b032b2c2911f03fd4f6af649f470620cd29eb566b821e5ce738d9ac11
  9. root $
  10. root $ docker exec -ti --user root rd bash
  11. root@ac4b8b2b032b:/data#
  12. root@ac4b8b2b032b:/data# redis-cli
  13. 127.0.0.1:6379>
  14. 127.0.0.1:6379> exit
  15. root@ac4b8b2b032b:/data#
  16. root@ac4b8b2b032b:/data# exit
  17. exit
  18. root $
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement