码迷,mamicode.com
首页 > Web开发 > 详细

dockce启动httpd+git

时间:2020-03-06 10:53:28      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:dev   get   sed   目录   初始化   awk   pass   docker   egit   

一、说明:

conf目录下:主要copy的文件时httpd.conf,主要是配置apache可以访问到git并通过账号密码控制
git-team.htpasswd: 这个文件提供了初始化的用户,主要包含两个,分别是usertest/admin
[附件:httpd.conf]

[附件:git-team.htpasswd]

二、创建DockerFile

FROM centos:centos7
MAINTAINER Imagine Lin<linzhiguo@afcat.com.cn>
ENV SSH_PASSWORD=P@ssw0rd
COPY git-team.htpasswd /opt/http_git/gitpasswd/git-team.htpasswd
RUN yum -y install git wget vim net net-tools grep awk sed exec httpd-2.4.6 httpd-devel-2.4.6 httpd-tools-2.4.6 && \
mkdir -p /opt/http_git/ud.git && \
cd /opt/http_git/ud.git && \
git init --bare && \
chown -R apache:apache /opt/http_git && \
chown apache:apache /opt/http_git/gitpasswd/git-team.htpasswd && \
chmod 640 /opt/http_git/gitpasswd/git-team.htpasswd
COPY conf /etc/httpd/conf
EXPOSE 80
CMD ["/usr/sbin/httpd","-D","FOREGROUND"]

三、构建镜像

#uyw-git: 是镜像名称。1.0是tag名称
docker build -t uyw-git:1.0 .

四、运行镜像

docker run -d -it -p 10000:80 --name uyw-git -v dataVolumeGit1:/opt/http_git/gitpasswd uyw-git:1.0

dockce启动httpd+git

标签:dev   get   sed   目录   初始化   awk   pass   docker   egit   

原文地址:https://blog.51cto.com/ttxjs/2475837

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!