πŸ’»
IT Wiki
CtrlK
  • πŸ‘‹Welcome
  • 🐧Linux
    • Basics
    • Useful Commands
    • SSH
    • Linux with Windows
      • WSL
      • Linux on Portable SSD
    • Ubuntu Startup Script
    • Customize Terminal
      • Best Shell
      • Change Bash Colors
    • Add flatpak for Kubuntu 24.04
    • Troubleshooting
    • 🐳Docker
      • Introduction
      • Tips & Tricks
      • Easy Monitoring
      • Examples of use
  • VS Code
    • Alpine Vscode Server Tunnel
    • Codespace as SSH Proxy
    • GUI on Codespace
    • Nice Extensions
  • Git
    • SSH Keys & PAT
    • Updating fork
    • Creating a mirror of a repo
    • Rename/Edit/Squash commit(s)
    • Reset and Switch
    • Github Actions
    • Tips & Tricks
  • Python
    • Virtual Environments
    • UV
    • Tips & Tricks
  • πŸ’»Awesome Tools
    • Medicat
  • 😎Awesome Sites
    • ⭐FMHY
    • πŸ‘“Github Awesome
    • QuickRef
    • Hacking Wiki
  • ✍️TODO
    • R&T
    • React + NodeJS + Express Website
Powered by GitBook
On this page
  • (Choice 1) VS Code's docker extension
  • (Choice 2) Portainer
  1. 🐧Linux
  2. 🐳Docker

Easy Monitoring

(Choice 1) VS Code's docker extension

https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-docker

(Choice 2) Portainer

  1. Copy paste this in terminal

docker volume create portainer_data
docker run -d -p 8000:8000 -p 9443:9443 --name portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
  1. open https://localhost:9443

PreviousTips & TricksNextExamples of use

Last updated 1 year ago