Skip to content

Commit 639b5fd

Browse files
author
Sorita Heng
committed
Minor fixes and adjustment for clarity
1 parent 8de6488 commit 639b5fd

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

modules/ROOT/partials/docker/image-proxy-service/image-proxy-service-installation.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ link:https://www.tiny.cloud/contact/[Contact us] for a trial xref:license-key.ad
1111
+
1212
[source, sh, subs="attributes+"]
1313
----
14-
docker login -u [username] -p [password] registry.containers.tiny.cloud
14+
docker login -u [username] -p [access-token] registry.containers.tiny.cloud
1515
----
1616

1717
. Pull the Docker Image from the Docker registry:
1818
+
1919
[source, sh, subs="attributes+"]
2020
----
21-
docker pull registry.containers.tiny.cloud/image-proxy-tiny:[version]
21+
docker pull registry.containers.tiny.cloud/image-proxy-tiny:<VERSION>
2222
----
2323
+
24-
Replace `[version]` with `latest` or the specific version number.
24+
Replace `<VERSION>` with `latest` or the specific version number.
2525

2626
=== Specify Configurations
2727

2828
After completing the previous steps, run the Docker container from the pulled image:
2929

3030
[source, sh, subs="attributes+"]
3131
----
32-
docker run -p 19040:19040 registry.containers.tiny.cloud/image-proxy-tiny:[version]
32+
docker run -p 19040:19040 registry.containers.tiny.cloud/image-proxy-tiny:<VERSION>
3333
----
3434

3535
This triggers `-p 19040:19040`, exposing the service on `localhost:19040`. The service runs on port `19040` inside the Docker container, and this maps it to the same port on your localhost.
@@ -74,10 +74,10 @@ The following settings for the Image Proxy service premium server-side component
7474

7575
Once the application configuration file is ready, proceed with the Docker Compose setup to configure and run the service.
7676

77-
. Create the `docker-compose.yml` file:
77+
. Create the `docker-compose.yaml` file:
7878

7979
+
80-
[source, yml]
80+
[source, yaml]
8181
----
8282
services:
8383
image-proxy-tiny:
@@ -199,6 +199,6 @@ To do this, configure the {pluginname} feature in the editor and call it via `ti
199199
tinymce.init({
200200
…,
201201
editimage_cors_hosts: [ 'example.com', 'good.com' ],
202-
editimage_proxy_service_url: "<http://localhost:19040>"
202+
editimage_proxy_service_url: "http://localhost:19040"
203203
});
204204
----

modules/ROOT/partials/docker/image-proxy-service/image-proxy-service-overview.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@ A valid xref:license-key.adoc[License Key] is required in order to install {plug
77

88
The only requirement to run this service On-Premises is a container runtime or orchestration tool e.g. Docker, Kubernetes, Podman.
99

10+
Once your subscription is enabled for the service, an access token will be provided to access the {companyname} Cloud Docker registry and pull the Docker image.
11+
1012
include::partial$misc/admon-dont-push-docker-images.adoc[]

0 commit comments

Comments
 (0)