博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
自助搭建git服务
阅读量:6821 次
发布时间:2019-06-26

本文共 1744 字,大约阅读时间需要 5 分钟。

Docker容器方式搭建Gogs步骤

一. 准备镜像:(从DockerHub下载)

gogs:0.11.53    mysql:5.7

二. 运行容器

**注意卷的挂载以及端口的暴露**example:  1> 运行gog容器, 3000端口是Web页面端口,22是用户ssh方式访问git服务的端口  docker run -d -p 3000:3000 -p 2222:22 -v /root/gogs/gogsdata:/data -v /etc/localtime:/etc/localtime  gogs/gogs:0.11.53  2> 运行mysql容器,用于存储gogs数据库,注意设置密码和服务器编码  docker run --privileged --name mysql -p 3306:3306 -v /root/gogs/mysqldata:/var/lib/mysql -v /etc/localtime:/etc/localtime  -e MYSQL_ROOT_PASSWORD=Paic1234 -d mysql:5.7 --character-set-server=utf8

三. 登录mysql容器创建gogs数据库

[root@SZD-L0103739 gogs]# docker ps | grep mysql        1d8830a5b3a9        mysql:5.7                       "docker-entrypoint..."   13 days ago         Up 13 days          0.0.0.0:3306->3306/tcp                             mysql        [root@SZD-L0103739 gogs]# docker exec -it 1d88 bash        root@1d8830a5b3a9:/# mysql -h 127.0.0.1 -uroot -pPaic1234   ### 1. 登录Mysql        mysql: [Warning] Using a password on the command line interface can be insecure.        Welcome to the MySQL monitor.  Commands end with ; or \g.        Your MySQL connection id is 63        Server version: 5.7.22 MySQL Community Server (GPL)        Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.        Oracle is a registered trademark of Oracle Corporation and/or its        affiliates. Other names may be trademarks of their respective        owners.        Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.        mysql> set names utf8;                #### 2. 设置编码        Query OK, 0 rows affected (0.00 sec)        mysql> create database gogs;          ###  3. 创建数据库        ERROR 1007 (HY000): Can't create database 'gogs'; database exists        mysql>

四. 登录Gog Web界面进行配置:

转载地址:http://bclzl.baihongyu.com/

你可能感兴趣的文章
win7安装laravel
查看>>
Oracle 各后台进程功能说明
查看>>
屏蔽storm ui的kill功能
查看>>
我的友情链接
查看>>
Oracle Decode函数的使用
查看>>
MSF学习笔记
查看>>
经典脚本案例--check memory
查看>>
20.31 expect脚本同步文件;20.32 expect脚本指定host和要同步的文件;20.33 构建文件分发系统;20.34...
查看>>
CentOS单用户与救援模式
查看>>
华为交换机配置手工负载分担模式链路聚合LACP示例
查看>>
Django QuerySet API
查看>>
win 7 升级为IE11后打开IE后无反应解决办法
查看>>
rest 特征和优点
查看>>
postfix 源码centos7上搭建及错误提示---亲测
查看>>
drawable自定义字体颜色
查看>>
操作系统基础
查看>>
Cocos2d-x跨平台开发利器--EasyNDK-for-cocos2dx
查看>>
94. Binary Tree Inorder Traversal(非递归实现二叉树的中序遍历)
查看>>
VS 2013的初配置
查看>>
变量提升和函数提升
查看>>