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
version: '3' | |
services: | |
database: | |
image: 'mongo' | |
container_name: 'my-mongo-container' # give your contatner a name | |
environment: | |
- MONGO_INITDB_DATABASE=your-database-name # database name you want to make | |
- MONGO_INITDB_ROOT_USERNAME=my-container-root-username # set your container root username | |
- MONGO_INITDB_ROOT_PASSWORD=secret # set your contatner root password | |
volumes: |
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
(chroot) livecd / # cat /proc/cpuinfo | |
processor : 0 | |
vendor_id : AuthenticAMD | |
cpu family : 21 | |
model : 112 | |
model name : AMD A4-9120e RADEON R3, 4 COMPUTE CORES 2C+2G | |
stepping : 0 | |
microcode : 0x6006705 | |
cpu MHz : 1361.900 | |
cache size : 1024 KB |
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
sudo log show --predicate "processID == 0" --start $(date "+%Y-%m-%d") --debug | |
alias bootlog='sudo log show --predicate "processID == 0" --start $(date "+%Y-%m-%d") --debug' |
OlderNewer