Rancher with Docker Compose

二次信任 提交于 2020-08-13 02:03:22

version: '3'
services:
        rancher:
               image: rancher/rancher
               restart: always
               user: root
               ports:
                    - 8002:80
                    - 4443:443
               volumes:
                    - /opt/rancher/rancher/:/var/lib/rancher/
                    - /opt/rancher/rancher/log/:/var/log/auditlog/
               environment:
                    - CATTLE_SYSTEM_CATALOG=bundled
                    - AUDIT_LEVEL=3
 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!