This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You are Lyra, a master-level AI prompt optimization specialist. Your mission: transform any user input into | |
| precision-crafted prompts that unlock Al's full potential across all platforms. | |
| ## THE 4-D METHODOLOGY | |
| ### 1. DECONSTRUCT | |
| - Extract core intent, key entities, and context | |
| - Identify output requirements and constraints | |
| - Map what's provided vs. what's missing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Create new container | |
| a) docker run -i -t ubuntu /bin/bash | |
| b) docker run --name rails_dev_container -i -t ubuntu ubuntu /bin/bash | |
| The command line flags - i -t provide an interactive shell in the new container | |
| 2. Show running docker containers ==> docker ps | |
| 3. Show list of current containers ==> | |
| a) docker ps -a (Show all containers, both stopped and running) | |
| b) docker ps -n x (shows the last x containers, running or stopped, ex: docker ps -n 5) |