Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit931d1dc

Browse files
committed
Updates
removed redirects from csdp topics and fixed 404s
1 parentae5e84d commit931d1dc

File tree

74 files changed

+13
-284
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+13
-284
lines changed

‎_docs/administration/account-user-management/access-control.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: "Restrict resources in a company environment"
44
group:administration
55
sub_group:account-user-management
66
redirect_from:
7-
-/csdp-docs/docs/administration/access-control/
87
-/docs/administration/access-control/
98
-/docs/enterprise/access-control/
109
-/docs/enterprise-account-mng/ent-account-mng/

‎_docs/administration/account-user-management/add-users.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: "Add users and teams to Codefresh accounts"
44
group:administration
55
sub_group:account-user-management
66
redirect_from:
7-
-/csdp-docs/docs/administration/add-users/
87
-/docs/administration/invite-your-team-member/
98
-/docs/accounts/
109
-/docs/accounts/invite-your-team-member/

‎_docs/administration/account-user-management/audit.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: "Getlogs of all actions in Codefresh"
44
group:administration
55
sub_group:account-user-management
66
redirect_from:
7-
-/csdp-docs/docs/administration/audit/
87
-/docs/administration/audit-logs/
98
-/docs/enterprise/audit-logs/
109
toc:true

‎_docs/administration/account-user-management/create-codefresh-account.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ description: "Welcome to Codefresh!"
44
group:administration
55
sub_group:account-user-management
66
redirect_from:
7-
-/csdp-docs/docs/administration/add-users/
87
-/docs/getting-started/create-a-codefresh-account/
98
-/docs/
109
-/docs/create-an-account/

‎_docs/administration/account-user-management/hosted-authorize-orgs.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: "Authorize organizations/projects"
33
description:""
44
group:administration
55
sub_group:account-user-management
6-
redirect_from:
7-
-/csdp-docs/docs/administration/hosted-authorize-orgs/
86
toc:true
97
---
108

‎_docs/administration/account-user-management/oauth-setup.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: "Setting up OAuth2 for Git providers"
33
description:""
44
group:administration
55
sub_group:account-user-management
6-
redirect_from:
7-
-/csdp-docs/docs/administration/oauth-setup/
86
toc:true
97
---
108

‎_docs/administration/account-user-management/pipeline-execution-context.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
title:"Pipeline execution context"
33
description:"A managed entity to make API calls on your behalf during pipeline execution"
44
group:administration
5-
redirect_from:
6-
-/docs/administration/pipeline-execution-context/
75
toc:true
86
---
97

‎_docs/administration/account-user-management/platform-ip-addresses.md‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ title: "Codefresh IP addresses"
33
description:""
44
group:administration
55
sub_group:account-user-management
6-
redirect_from:
7-
-/csdp-docs/docs/administration/platform-ip-addresses/
86
-/docs/administration/platform-ip-addresses/
97
toc:true
108

‎_docs/administration/user-self-management/user-settings.md‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ group: administration
55
sub_group:user-self-management
66
redirect_from:
77
-/docs/administration/user-settings/
8-
-/csdp-docs/docs/administration/user-settings/
98
toc:true
109
---
1110

‎_docs/ci-cd-guides/building-docker-images.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ If you have a multistage Dockerfile, then the respective pipeline in Codefresh i
4747
1. A clone step to check out the source code
4848
1. A build step to create the Docker image
4949

50-
For example, here is a[Java dockerfile]({{site.baseurl}}/docs/example-catalog/ci-examples/java/spring-boot-2/#spring-boot-2-and-docker-multi-stage-builds):
50+
For example, here is a[Java dockerfile]({{site.baseurl}}/docs/example-catalog/ci-examples/spring-boot-2/#spring-boot-2-and-docker-multi-stage-builds):
5151

5252
`Dockerfile`
5353
{% highlight docker %}
@@ -110,7 +110,7 @@ caption="Multi-stage Docker builds"
110110
max-width="100%"
111111
%}
112112

113-
You can find multistage build examples for other programming languages in the[example section]({{site.baseurl}}/docs/example-catalog/ci-examples/examples/).
113+
You can find multistage build examples for other programming languages in the[example section]({{site.baseurl}}/docs/example-catalog/examples/).
114114

115115

116116
##Creating self-contained Docker images
@@ -190,7 +190,7 @@ An alternative way to create Docker images is to just package an existing artifa
190190

191191
>Though this is a very popular way to create Dockerfiles, and Codefresh supports it, we do**NOT** recommend writing Dockerfiles like this. Please learn about Docker multistage builds if you are not familiar with them.
192192
193-
You can see this pattern in all kinds of Dockerfiles that assume the application is already there (or that dependencies are already downloaded). Here is a[Dockerfile that packages an existing JAR]({{site.baseurl}}/docs/example-catalog/ci-examples/java/spring-boot-2/#spring-boot-2-and-docker-package-only) file.
193+
You can see this pattern in all kinds of Dockerfiles that assume the application is already there (or that dependencies are already downloaded). Here is a[Dockerfile that packages an existing JAR]({{site.baseurl}}/docs/example-catalog/ci-examples/spring-boot-2/#spring-boot-2-and-docker-package-only) file.
194194

195195
`Dockerfile`
196196
{% highlight docker %}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp