You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,10 @@ Please see below for links and descriptions of each component:
14
14
-[passport](https://github.com/drycc/passport) - Workflow single sign on system
15
15
-[controller](https://github.com/drycc/controller) - Workflow API server
16
16
-[builder](https://github.com/drycc/builder) - Git server and source-to-image component
17
-
-[imagebuilder](https://github.com/drycc/imagebuilder) - The builder for [Docker](https://www.docker.com/) and [CNCF Buildpacks](https://buildpacks.io/) based applications
17
+
-[imagebuilder](https://github.com/drycc/imagebuilder) - The builder for Container Image and [CNCF Buildpacks](https://buildpacks.io/) based applications
18
18
-[fluentbit](https://github.com/drycc/fluentbit) - Backend log shipping mechanism for `drycc logs`
19
19
-[postgres](https://github.com/drycc/postgres) - The central database
20
-
-[registry](https://github.com/drycc/registry) - The Docker registry
20
+
-[registry](https://github.com/drycc/registry) - The Container registry
21
21
-[logger](https://github.com/drycc/logger) - The (in-memory) log buffer for `drycc logs`
22
22
-[monitor](https://github.com/drycc/monitor) - The platform monitoring components
23
23
-[prometheus](https://github.com/drycc/prometheus) - The monitor database
@@ -44,7 +44,7 @@ The Drycc project welcomes contributions from all developers. The high level pro
44
44
45
45
## Requirements
46
46
47
-
The documentation site requires either a local installation of [MkDocs][] or access to Docker.
47
+
The documentation site requires either a local installation of [MkDocs][] or access to Container.
48
48
49
49
### Local Installation
50
50
@@ -56,13 +56,13 @@ make deps
56
56
57
57
## Building Documentation
58
58
59
-
To build the documentation run: `make build` or `make docker-build`.
59
+
To build the documentation run: `make build` or `make podman-build`.
60
60
61
61
## Serve Documentation Locally
62
62
63
-
To serve documenation run: `make serve` or `make docker-serve`.
63
+
To serve documenation run: `make serve` or `make podman-serve`.
64
64
65
-
Then view the documentation on [http://localhost:8000](http://localhost:8000) or `http://DOCKER_IP:8000`.
65
+
Then view the documentation on [http://localhost:8000](http://localhost:8000) or `http://PODMAN_IP:8000`.
Copy file name to clipboardExpand all lines: src/applications/using-dockerfiles.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Using Dockerfiles
2
2
3
-
Drycc supports deploying applications via Dockerfiles. A [Dockerfile][] automates the steps for crafting a [Docker Image][].
3
+
Drycc supports deploying applications via Dockerfiles. A [Dockerfile][] automates the steps for crafting a [Container Image][].
4
4
Dockerfiles are incredibly powerful but require some extra work to define your exact application runtime environment.
5
5
6
6
## Add SSH Key
@@ -34,7 +34,7 @@ In order to deploy Dockerfile applications, they must conform to the following r
34
34
* The Dockerfile must use the `EXPOSE` directive to expose exactly one port.
35
35
* That port must be listening for an HTTP connection.
36
36
* The Dockerfile must use the `CMD` directive to define the default process that will run within the container.
37
-
* The Docker image must contain [bash](https://www.gnu.org/software/bash/) to run processes.
37
+
* The Container image must contain [bash](https://www.gnu.org/software/bash/) to run processes.
38
38
39
39
!!! note
40
40
Note that if you are using a private registry of any kind (`gcr` or other) the application environment must include a `$PORT` config variable that matches the `EXPOSE`'d port, example: `drycc config:set PORT=5000`. See [Configuring Registry](../installing-workflow/configuring-registry/#configuring-off-cluster-private-registry) for more info.
@@ -123,10 +123,10 @@ process type directly changes the number of [containers][container]
123
123
running that process.
124
124
125
125
126
-
## Docker Build Arguments
126
+
## Container Build Arguments
127
127
128
-
As of Workflow v2.13.0, users can inject their application config into the Docker image using
129
-
[Docker build arguments][build-args]. To opt into this, users must add a new environment variable
128
+
As of Workflow v2.13.0, users can inject their application config into the Container image using
129
+
[Container build arguments][build-args]. To opt into this, users must add a new environment variable
0 commit comments