Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
apollo
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
apollo
Commits
d3a2dd0b
Commit
d3a2dd0b
authored
Dec 08, 2018
by
nobodyiam
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fix
parent
28032710
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
15 deletions
+16
-15
apollo-adminservice/src/main/docker/Dockerfile
apollo-adminservice/src/main/docker/Dockerfile
+3
-4
apollo-configservice/src/main/docker/Dockerfile
apollo-configservice/src/main/docker/Dockerfile
+3
-4
apollo-portal/src/main/docker/Dockerfile
apollo-portal/src/main/docker/Dockerfile
+3
-4
apollo-portal/src/main/resources/static/user-manage.html
apollo-portal/src/main/resources/static/user-manage.html
+7
-3
No files found.
apollo-adminservice/src/main/docker/Dockerfile
View file @
d3a2dd0b
# 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>
...
...
apollo-configservice/src/main/docker/Dockerfile
View file @
d3a2dd0b
# 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>
...
...
apollo-portal/src/main/docker/Dockerfile
View file @
d3a2dd0b
# 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>
...
...
apollo-portal/src/main/resources/static/user-manage.html
View file @
d3a2dd0b
...
...
@@ -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"
...
...
@@ -32,15 +35,16 @@
<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>
...
...
@@ -48,7 +52,7 @@
<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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment