今天將omv安裝好并且更新了官方插件就可以利用docker 安裝很多的服務(wù)了,但是為了可以更好管理docker就需要安裝portainer 為了方便方便管理就安裝了漢化版的
luoluo@omv:~$? docker search portainer
NAME? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? DESCRIPTION? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? STARS? ? OFFICIAL? AUTOMATED
6053537/portainer-ce? ? ? ? ? ? ? ? portainer-ce中文漢化版? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 26
lihaixin/portainer? ? ? ? ? ? ? ? ? docker ui? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 15? ? ? ? ? ? ? ? ? [OK]
greenled/portainer-stack-utils? ? ? Bash scripts to deploy/undeploy stacks in a …? 6? ? ? ? ? ? ? ? ? ? [OK]
portainerci/portainer? ? ? ? ? ? ? Portainer images automatically created via P…? 6? ? ?
6053537/portainer? ? ? ? ? ? ? ? ? portainer中文版蛆橡,完整漢化舌界,漢化程度95%以上? ? ? ? ? ? ? ? ? ? 6
cqkz/portainer-zh? ? ? ? ? ? ? ? ? portainer-ce:2.1.1-alpine,漢化文件來(lái)自恩山…? ? ? ? ? ? 3
hassioaddons/portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 2? ? ?
thibaudlabat/portainer_32? ? ? ? ? Portainer built for 32bit Linux [ OUTDATED ]…? 1? ? ?
hassioaddons/portainer-armv7? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 1? ? ?
softonic/portainer-endpoint? ? ? ? Allows auto register all the swarm nodes in …? 1? ? ? ? ? ? ? ? ? ? [OK]
antsoftxyz/portainer-api? ? ? ? ? ? A portainer api wrapper which can help you C…? 0? ? ?
iconviet/portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ?
hassioaddons/portainer-amd64? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ?
mitigram/portainer-ce? ? ? ? ? ? ? Easily Configurable Portainer (CE Edition)? ? ? 0? ? ?
xanderstrike/portainer-issue? ? ? ? for illustrating a portainer issue? ? ? ? ? ? ? 0? ? ?
helloysd/portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ?
11384eb/portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ?
nenadilic84/portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ?
portainerci/agent? ? ? ? ? ? ? ? ? Portainer agent images automatically created…? 0? ? ?
portainerci/portainer-ee? ? ? ? ? ? Portainer EE CI repository? ? ? ? ? ? ? ? ? ? ? 0? ? ?
agiper/portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ?
johnvmt/portainer-ecr-credentials? Periodically updates the credentials Portain…? 0? ? ? ? ? ? ? ? ? ? [OK]
profidata/portainer? ? ? ? ? ? ? ? Fork of portioner/portainer? ? ? ? ? ? ? ? ? ? 0? ? ?
webdevsvc/portainer? ? ? ? ? ? ? ? portainer? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 0? ? ? ? ? ? ? ? ? ? [OK]
geosite/portainer? ? ? ? ? ? ? ? ? A Docker UI, This is a fork of portainer/por…? 0? ? ?
luoluo@omv:~$ docker pull portainer/portainer
Using default tag: latest
latest: Pulling from portainer/portainer
94cfa856b2b1: Pull complete
49d59ee0881a: Pull complete
a2300fd28637: Pull complete
Digest: sha256:fb45b43738646048a0a0cc74fcee2865b69efde857e710126084ee5de9be0f3f
Status: Downloaded newer image for portainer/portainer:latest
docker.io/portainer/portainer:latest
輸入先創(chuàng)建這個(gè)容器
docker run -d -p 9000:9000 --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data --name prtainer-test portainer/portainer
luoluo@omv:/$ sudo mkdir public
我們信任您已經(jīng)從系統(tǒng)管理員那里了解了日常注意事項(xiàng)泰演。
總結(jié)起來(lái)無(wú)外乎這三點(diǎn):
? ? #1) 尊重別人的隱私呻拌。
? ? #2) 輸入前要先考慮(后果和風(fēng)險(xiǎn))。
? ? #3) 權(quán)力越大睦焕,責(zé)任越大藐握。
[sudo] luoluo 的密碼:
luoluo@omv:/$ ls
bin? etc? ? initrd.img? ? ? lib32? lost+found? opt? ? root? srv? usr? ? ? vmlinuz.old
boot? export? initrd.img.old? lib64? media? ? ? proc? ? run? sys? var
dev? home? ? lib? ? ? ? ? ? libx32? mnt? ? ? ? public? sbin? tmp? vmlinuz
luoluo@omv:/$ chmod 777 public/
chmod: 更改'public/' 的權(quán)限: 不允許的操作
luoluo@omv:/$ sudo chmod 777 p
proc/? public/
luoluo@omv:/$ sudo chmod 777 public/? 將下載好的漢化包上傳到這個(gè)文件夾修改權(quán)限才可以
進(jìn)入/public
luoluo@omv:/public$ ls
css? fonts? ico? images? index.html? js? public.7z? 這里是解壓縮的文件
luoluo@omv:/public$ docker ps
CONTAINER ID? IMAGE? ? ? ? ? ? ? ? COMMAND? ? ? ? CREATED? ? ? ? ? STATUS? ? ? ? ? PORTS? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? NAMES
740834362f8c? portainer/portainer? "/portainer"? 39 seconds ago? Up 36 seconds? 0.0.0.0:9000->9000/tcp, :::9000->9000/tcp? prtainer-test
luoluo@omv:/public$ docker stop 740834362f8c 停止該容器
740834362f8c
luoluo@omv:/public$ docker rm -f 740834362f8c刪除容器
740834362f8c
docker run -d -p 9000:9000 --restart=always? -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data -v /public:/public --name prtainer-test? portainer/portainer
最后登錄omv ip :9000
附上漢化版文件,感謝網(wǎng)友提供的漢化文件
漢化文件
鏈接:https://pan.baidu.com/s/1CJj5AYRW2fjhTojPh5WFgA 提取碼: cdq6