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
s.Shell().Info(fmt.Sprintf("⇒ New Dockerfile was created to build service '%s' for deploy. Review and make sure it has all the required steps. ", serviceName))
s.Shell().Info(fmt.Sprintf("⇒ New Dockerfile was created to build service '%s' for deploy. Review and make sure it has all the required steps. ", serviceName))
s.Shell().Info(fmt.Sprintf("⇒ Service '%s' uses volumes. Make sure to create the necessary Dockerfile and build it to deploy if necessary.", serviceName))
s.Shell().Info(fmt.Sprintf("⇒ Service '%s' uses volumes. Make sure to create the necessary Dockerfile and build it to deploy if necessary.", serviceName))
Copy file name to clipboardExpand all lines: docs/3-Deploy-to-Kool-Cloud/2-kool.cloud.yml-Reference.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
-
`kool.deploy.yml` will hold all the extra configuration needed to move your application from `docker-compose.yml` and run it in the cloud.
1
+
`kool.cloud.yml` will hold all the extra configuration needed to move your application from `docker-compose.yml` and run it in the cloud.
2
2
3
3
## The basics
4
4
5
-
The `kool.deploy.yml` file is an extension to your already familiar `docker-compose.yml`, having the same basic structure but introducing some configuration entries to enable you to fine-tune your deployment container needs.
5
+
The `kool.cloud.yml` file is an extension to your already familiar `docker-compose.yml`, having the same basic structure but introducing some configuration entries to enable you to fine-tune your deployment container needs.
6
6
7
7
Suppose you have the following `docker-compose.yml` file:
8
8
@@ -14,7 +14,7 @@ services:
14
14
- 80:80# maps the container port 80 to your localhost
15
15
```
16
16
17
-
Now, if you want to deploy this single-container app to the cloud using Kool, you need the following `kool.deploy.yml` file:
17
+
Now, if you want to deploy this single-container app to the cloud using Kool, you need the following `kool.cloud.yml` file:
18
18
19
19
```yaml
20
20
services:
@@ -29,7 +29,7 @@ Provided you have already signed up and obtained your access token for Kool Clou
29
29
30
30
## Full example
31
31
32
-
Here's an example of `kool.deploy.yml` file showcasing all the features and configuration entries available:
32
+
Here's an example of `kool.cloud.yml` file showcasing all the features and configuration entries available:
0 commit comments