docker run --detach
--hostname your_host_name
--env GITLAB_OMNIBUS_CONFIG="gitlab_rails['gitlab_shell_ssh_portv'] = '23';"
--publish 443:443
--publish 80:80
--publish 23:22
--name gitlab
--restart always
--volume pwd
/gitlab/config:/etc/gitlab
--volume pwd
/gitlab/logs:/var/log/gitlab \
对编程有了系统的概念,之前总是从入门到放弃,这次终于自己能够做出完整的作品,对于自己学习其它技能的自信心也大大增强了,自己的小创意有了实现的能力,对于编程的越来越有热情。
关于全栈,之前一直觉得自己很全能,什么都会一点,但是在参加 jdstore 比赛的时候发现,一个人的时间是非常有限的,和他人配合能够大大的提高效率,大家一起做才能够在有限的时间内完成理想中的工作量,所以自己会做是一方面,懂得和人配合,团队之间的沟通也非常重要。
- 学会了主动学习,对自己更加自信,不再惧怕挑战。
- 每日写orid,让自己的逻辑更加清楚。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActionMailer::Base.register_interceptor(BanDisposableInterceptor) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
backend "s3" {} | |
} | |
provider "aws" { | |
region = "ap-southeast-1" | |
shared_credentials_file = "~/.aws/credentials" | |
} | |
data "aws_vpc" "default" { |
OlderNewer