LoginSignup
0
1

More than 3 years have passed since last update.

DockerでPortainerを動かす

Last updated at Posted at 2021-02-19

portainerって何?

Docker環境管理ツールです
https://www.portainer.io/

対象

Dockerコマンド打つのめんどくさい…
sshするのめんどくさい…
的な人向け

前提

Dockerのインストールは済ませておくこと

インストール

$ docker run \
    --detach \
    --publish 9000:9000 \
    --name portainer \
    --restart always \
    --volume /var/run/docker.sock:/var/run/docker.sock \
    --volume portainer_data:/data \
    portainer/portainer-ce

確認

http://localhost:9000にアクセスし、管理画面が出てくれば成功

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1