Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nobodyiam committed Dec 8, 2018
1 parent 2803271 commit d3a2dd0
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
7 changes: 3 additions & 4 deletions apollo-adminservice/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Dockerfile for apollo-adminservice
# Build with:
# docker build -t apollo-adminservice .
# Run with:
# docker run -p 8090:8090 -d -v /tmp/logs:/opt/logs --name apollo-adminservice apollo-adminservice
# 1. Copy apollo-adminservice-${VERSION}-github.zip to current directory
# 2. Build with: docker build -t apollo-adminservice .
# 3. Run with: docker run -p 8090:8090 -d -v /tmp/logs:/opt/logs --name apollo-adminservice apollo-adminservice

FROM openjdk:8-jre-alpine
MAINTAINER ameizi <sxyx2008@163.com>
Expand Down
7 changes: 3 additions & 4 deletions apollo-configservice/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Dockerfile for apollo-configservice
# Build with:
# docker build -t apollo-configservice .
# Run with:
# docker run -p 8080:8080 -d -v /tmp/logs:/opt/logs --name apollo-configservice apollo-configservice
# 1. Copy apollo-configservice-${VERSION}-github.zip to current directory
# 2. Build with: docker build -t apollo-configservice .
# 3. Run with: docker run -p 8080:8080 -d -v /tmp/logs:/opt/logs --name apollo-configservice apollo-configservice

FROM openjdk:8-jre-alpine
MAINTAINER ameizi <sxyx2008@163.com>
Expand Down
7 changes: 3 additions & 4 deletions apollo-portal/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Dockerfile for apollo-portal
# Build with:
# docker build -t apollo-portal .
# Run with:
# docker run -p 8070:8070 -d -v /tmp/logs:/opt/logs --name apollo-portal apollo-portal
# 1. Copy apollo-portal-${VERSION}-github.zip to current directory
# 2. Build with: docker build -t apollo-portal .
# 3. Run with: docker run -p 8070:8070 -d -v /tmp/logs:/opt/logs --name apollo-portal apollo-portal

FROM openjdk:8-jre-alpine
MAINTAINER ameizi <sxyx2008@163.com>
Expand Down
10 changes: 7 additions & 3 deletions apollo-portal/src/main/resources/static/user-manage.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
<div class="panel">
<header class="panel-heading">
用户管理
<small>
(仅对默认的Spring Security简单认证方式有效: -Dapollo_profile=github,auth)
</small>
</header>

<form class="form-horizontal panel-body" name="appForm" ng-controller="UserController"
Expand All @@ -32,23 +35,24 @@
<label class="col-sm-2 control-label">
<apollorequiredfield></apollorequiredfield>
用户名</label>
<div class="col-sm-4">
<div class="col-sm-5">
<input type="text" class="form-control" name="username" ng-model="user.username">
<small>输入的用户名如果不存在,则新建。若已存在,则更新。</small>
</div>
</div>
<div class="form-group" valdr-form-group>
<label class="col-sm-2 control-label">
<apollorequiredfield></apollorequiredfield>
密码</label>
<div class="col-sm-4">
<div class="col-sm-5">
<input type="text" class="form-control" name="password" ng-model="user.password">
</div>
</div>
<div class="form-group" valdr-form-group>
<label class="col-sm-2 control-label">
<apollorequiredfield></apollorequiredfield>
邮箱</label>
<div class="col-sm-4">
<div class="col-sm-5">
<input type="text" class="form-control" name="password" ng-model="user.email">
</div>
</div>
Expand Down

0 comments on commit d3a2dd0

Please sign in to comment.