Advertisement
Guest User

Untitled

a guest
Feb 8th, 2018
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. Access Docker host machine via Bastion
  2. 1. ssh centos@13.229.209.88
  3. 2. ssh w1
  4.  
  5. Once inside w1, perform 'docker ps' to show all running instances. You should see one labeled something like
  6.  
  7. c40aa1c5855e stormtechnologies/store:4.0.0-eeb3365 "docker-php-entryp..." 3 hours ago Up 3 hours 9000/tcp, 0.0.0.0:13356->80/tcp mesos-0c4a74c2-de85-45a6-be60-0384cfa5f57f
  8.  
  9. Using Docker (not docker-compose) Bash inside the store image, so for this example its 'docker exec -it c40aa1c5855e bash'
  10.  
  11. after this you will be inside the store image (var/www/html). You can now perform magento related commands like './bin/magento'
  12.  
  13.  
  14.  
  15.  
  16. For database access please use these details to login to our database
  17.  
  18. http://store.phpmyadmin.uat.storm.ph
  19. Username: Sapphire
  20. Password: XUTu6bYMNUxH2GwTguUI
  21.  
  22. Database name : store
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement