Skip to content

Commit 54b6a66

Browse files
Use docker images without an explict domain (#1789)
Use docker images without an explict domain (#1772) * update docker images to use bare images * replace deleted section Co-authored-by: Ross Smith <[email protected]>
1 parent fe27c6f commit 54b6a66

30 files changed

+59
-59
lines changed

content/docs/deploy/clients/clients.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ brew install pomerium-cli
112112
<TabItem value="docker" label="Docker">
113113

114114
```bash
115-
docker run pomerium.com/pomerium/cli:latest --version
115+
docker run pomerium/cli:latest --version
116116
```
117117

118118
</TabItem>

content/docs/deploy/cloud/install.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ services:
8282
aliases:
8383
- verify.<CLUSTER_STARTER_SUBDOMAIN>.pomerium.app
8484
verify:
85-
image: pomerium.com/pomerium/verify:latest
85+
image: pomerium/verify:latest
8686
networks:
8787
main:
8888
aliases:

content/docs/get-started/fundamentals/core/advanced-policies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -167,13 +167,13 @@ Docker Compose:
167167
```yaml
168168
services:
169169
pomerium:
170-
image: pomerium.com/pomerium/pomerium:latest
170+
image: pomerium/pomerium:latest
171171
volumes:
172172
- ./config.yaml:/pomerium/config.yaml:ro
173173
ports:
174174
- 443:443
175175
verify:
176-
image: pomerium.com/pomerium/verify:latest
176+
image: pomerium/verify:latest
177177
expose:
178178
- 8000
179179
environment:

content/docs/get-started/fundamentals/core/advanced-routes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -442,13 +442,13 @@ Docker Compose
442442
```yaml
443443
services:
444444
pomerium:
445-
image: pomerium.com/pomerium/pomerium:latest
445+
image: pomerium/pomerium:latest
446446
volumes:
447447
- ./config.yaml:/pomerium/config.yaml:ro
448448
ports:
449449
- 443:443
450450
verify:
451-
image: pomerium.com/pomerium/verify:latest
451+
image: pomerium/verify:latest
452452
expose:
453453
- 8000
454454
environment:

content/docs/get-started/fundamentals/core/build-policies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -246,13 +246,13 @@ Docker Compose:
246246
```yaml
247247
services:
248248
pomerium:
249-
image: pomerium.com/pomerium/pomerium:latest
249+
image: pomerium/pomerium:latest
250250
volumes:
251251
- ./config.yaml:/pomerium/config.yaml:ro
252252
ports:
253253
- 443:443
254254
verify:
255-
image: pomerium.com/pomerium/verify:latest
255+
image: pomerium/verify:latest
256256
expose:
257257
- 8000
258258
grafana:

content/docs/get-started/fundamentals/core/build-routes.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ In your `docker-compose.yaml` file, add Grafana as a service:
7070
```yaml title="docker-compose.yaml"
7171
services:
7272
pomerium:
73-
image: pomerium.com/pomerium/pomerium:latest
73+
image: pomerium/pomerium:latest
7474
volumes:
7575
- ./config.yaml:/pomerium/config.yaml:ro
7676
ports:
7777
- 443:443
7878
verify:
79-
image: pomerium.com/pomerium/verify:latest
79+
image: pomerium/verify:latest
8080
expose:
8181
- 8000
8282
grafana:
@@ -183,13 +183,13 @@ Docker Compose:
183183
```yaml
184184
services:
185185
pomerium:
186-
image: pomerium.com/pomerium/pomerium:latest
186+
image: pomerium/pomerium:latest
187187
volumes:
188188
- ./config.yaml:/pomerium/config.yaml:ro
189189
ports:
190190
- 443:443
191191
verify:
192-
image: pomerium.com/pomerium/verify:latest
192+
image: pomerium/verify:latest
193193
expose:
194194
- 8000
195195
grafana:

content/docs/get-started/fundamentals/core/get-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ Add the following configuration settings to `docker-compose.yaml`:
109109
```yaml title="docker-compose.yaml"
110110
services:
111111
pomerium:
112-
image: pomerium.com/pomerium/pomerium:latest
112+
image: pomerium/pomerium:latest
113113
volumes:
114114
- ./config.yaml:/pomerium/config.yaml:ro
115115
ports:
116116
- 443:443
117117
verify:
118-
image: pomerium.com/pomerium/verify:latest
118+
image: pomerium/verify:latest
119119
expose:
120120
- 8000
121121
```
@@ -182,13 +182,13 @@ Docker Compose:
182182
```yaml
183183
services:
184184
pomerium:
185-
image: pomerium.com/pomerium/pomerium:latest
185+
image: pomerium/pomerium:latest
186186
volumes:
187187
- ./config.yaml:/pomerium/config.yaml:ro
188188
ports:
189189
- 443:443
190190
verify:
191-
image: pomerium.com/pomerium/verify:latest
191+
image: pomerium/verify:latest
192192
expose:
193193
- 8000
194194
```

content/docs/get-started/fundamentals/core/jwt-verification.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ In your Docker Compose file, add the following environment variable to your Veri
208208

209209
```yaml title="docker-compose"
210210
verify:
211-
image: pomerium.com/pomerium/verify:latest
211+
image: pomerium/verify:latest
212212
expose:
213213
- 8000
214214
environment:
@@ -338,13 +338,13 @@ Docker Compose
338338
```yaml
339339
services:
340340
pomerium:
341-
image: pomerium.com/pomerium/pomerium:latest
341+
image: pomerium/pomerium:latest
342342
volumes:
343343
- ./config.yaml:/pomerium/config.yaml:ro
344344
ports:
345345
- 443:443
346346
verify:
347-
image: pomerium.com/pomerium/verify:latest
347+
image: pomerium/verify:latest
348348
expose:
349349
- 8000
350350
environment:

content/docs/get-started/fundamentals/core/tcp-routes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ In your Docker Compose file, bind mount your wildcard certificates as a volume i
116116
```yaml title="docker-compose.yaml"
117117
services:
118118
pomerium:
119-
image: pomerium.com/pomerium/pomerium:latest
119+
image: pomerium/pomerium:latest
120120
volumes:
121121
# Mount your wildcard certificates:
122122
- ./_wildcard.localhost.pomerium.io-key.pem:/pomerium/key.pem:ro

content/docs/get-started/fundamentals/zero/zero-advanced-routes.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ services:
356356
- verify.<CLUSTER_SUBDOMAIN>.pomerium.app
357357
- authenticate.<CLUSTER_SUBDOMAIN>.pomerium.app
358358
verify:
359-
image: pomerium.com/pomerium/verify:latest
359+
image: pomerium/verify:latest
360360
networks:
361361
main:
362362
aliases:

content/docs/get-started/fundamentals/zero/zero-build-routes.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ At this point, your Docker Compose file should look like this:
9898
```yaml title="docker-compose.yaml"
9999
services:
100100
pomerium:
101-
image: pomerium.com/pomerium/pomerium:latest
101+
image: pomerium/pomerium:latest
102102
ports:
103103
- 443:443
104104
restart: always
@@ -112,7 +112,7 @@ services:
112112
aliases:
113113
- verify.<YOUR_CLUSTER_SUBDOMAIN>.pomerium.app
114114
verify:
115-
image: pomerium.com/pomerium/verify:latest
115+
image: pomerium/verify:latest
116116
networks:
117117
main:
118118
aliases:

content/docs/get-started/fundamentals/zero/zero-single-sign-on.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ At this point, your Docker Compose file should look like this:
199199
```yaml title="docker-compose.yaml"
200200
services:
201201
pomerium:
202-
image: pomerium.com/pomerium/pomerium:latest
202+
image: pomerium/pomerium:latest
203203
ports:
204204
- 443:443
205205
restart: always
@@ -214,7 +214,7 @@ services:
214214
- verify.<CLUSTER_SUBDOMAIN>.pomerium.app
215215
- authenticate.<CLUSTER_SUBDOMAIN>.pomerium.app
216216
verify:
217-
image: pomerium.com/pomerium/verify:latest
217+
image: pomerium/verify:latest
218218
networks:
219219
main:
220220
aliases:

content/docs/get-started/quickstart.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ services:
6666
aliases:
6767
- verify.<CLUSTER_STARTER_SUBDOMAIN>.pomerium.app
6868
verify:
69-
image: pomerium.com/pomerium/verify:latest
69+
image: pomerium/verify:latest
7070
networks:
7171
main:
7272
aliases:

content/docs/guides/gitlab.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Integrations that use unique subdomains will require their own certificates and
212212
...
213213
214214
pomerium:
215-
image: pomerium.com/pomerium/pomerium:latest
215+
image: pomerium/pomerium:latest
216216
container_name: pomerium
217217
volumes:
218218
- ./srv/pomerium/config.yaml:/pomerium/config.yaml:ro

content/docs/guides/guacamole.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ In your Docker Compose file, replace `nginx` with Pomerium Core:
122122

123123
```yaml showLineNumbers
124124
pomerium:
125-
image: pomerium.com/pomerium/pomerium:latest
125+
image: pomerium/pomerium:latest
126126
# highlight-start
127127
# Mount your config file
128128
volumes:

content/docs/guides/hedgedoc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ In your `docker-compose.yaml` file, add the following services:
9797
```yaml
9898
services:
9999
pomerium:
100-
image: pomerium.com/pomerium/pomerium:latest
100+
image: pomerium/pomerium:latest
101101
volumes:
102102
# Mount your certificates
103103
- ./_wildcard.localhost.pomerium.io.pem:/pomerium/cert.pem:ro

content/docs/guides/tiddlywiki.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Add the following code in your `docker-compose.yaml` file:
8686
```yaml title="docker-compose.yaml"
8787
services:
8888
pomerium:
89-
image: pomerium.com/pomerium/pomerium:latest
89+
image: pomerium/pomerium:latest
9090
volumes:
9191
- ./config.yaml:/pomerium/config.yaml:ro
9292
ports:

content/docs/integrations/user-identity/keycloak.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,14 @@ services:
5050
- keycloak.localhost.pomerium.io
5151

5252
pomerium:
53-
image: pomerium.com/pomerium/pomerium:latest
53+
image: pomerium/pomerium:latest
5454
volumes:
5555
- ./config.yaml:/pomerium/config.yaml:ro
5656
ports:
5757
- 443:443
5858

5959
verify:
60-
image: pomerium.com/pomerium/verify:latest
60+
image: pomerium/verify:latest
6161
environment:
6262
JWKS_ENDPOINT: https://pomerium/.well-known/pomerium/jwks.json
6363
```

content/docs/internals/configuration.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ networks:
213213
services:
214214
pomerium-proxy:
215215
hostname: pomerium-proxy
216-
image: pomerium.com/pomerium/pomerium:latest
216+
image: pomerium/pomerium:latest
217217
networks:
218218
main: {}
219219
volumes:
@@ -231,7 +231,7 @@ services:
231231
- CERTIFICATE_AUTHORITY_FILE=/run/secrets/ca.pem
232232
pomerium-authorize:
233233
hostname: pomerium-authorize
234-
image: pomerium.com/pomerium/pomerium:latest
234+
image: pomerium/pomerium:latest
235235
networks:
236236
main: {}
237237
volumes:
@@ -243,7 +243,7 @@ services:
243243
- CERTIFICATE_AUTHORITY_FILE=/run/secrets/ca.pem
244244
pomerium-authenticate:
245245
hostname: pomerium-authenticate
246-
image: pomerium.com/pomerium/pomerium:latest
246+
image: pomerium/pomerium:latest
247247
volumes:
248248
- ./config.yaml:/pomerium/config.yaml
249249
secrets:
@@ -262,7 +262,7 @@ services:
262262
- authenticate.localhost.pomerium.io
263263
pomerium-databroker:
264264
hostname: pomerium-databroker
265-
image: pomerium.com/pomerium/pomerium:latest
265+
image: pomerium/pomerium:latest
266266
networks:
267267
main: {}
268268
volumes:

content/examples/docker/autocert.docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pomerium:
3-
image: pomerium.com/pomerium/pomerium:latest
3+
image: pomerium/pomerium:latest
44
environment:
55
# Generate new secret keys. e.g. `head -c32 /dev/urandom | base64`
66
- COOKIE_SECRET=V2JBZk0zWGtsL29UcFUvWjVDWWQ2UHExNXJ0b2VhcDI=
@@ -12,6 +12,6 @@ services:
1212

1313
# https://verify.corp.beyondperimeter.com --> Pomerium --> http://verify
1414
verify:
15-
image: pomerium.com/pomerium/verify:latest
15+
image: pomerium/verify:latest
1616
expose:
1717
- 80
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
```yaml
22
services:
33
pomerium:
4-
image: pomerium.com/pomerium/pomerium:latest
4+
image: pomerium/pomerium:latest
55
volumes:
66
## Mount your config file: https://www.pomerium.com/docs/reference/
77
- ./config.yaml:/pomerium/config.yaml:ro
88
ports:
99
- 443:443
1010
## https://verify.localhost.pomerium.io --> Pomerium --> http://verify
1111
verify:
12-
image: pomerium.com/pomerium/verify:latest
12+
image: pomerium/verify:latest
1313
expose:
1414
- 8000
15-
```
15+
```

content/examples/docker/nginx.docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- /var/run/docker.sock:/tmp/docker.sock:ro
1212

1313
pomerium-authenticate:
14-
image: pomerium.com/pomerium/pomerium:latest # or `build: .` to build from source
14+
image: pomerium/pomerium:latest # or `build: .` to build from source
1515
restart: always
1616
environment:
1717
- SERVICES=authenticate
@@ -59,7 +59,7 @@ services:
5959
- 443
6060

6161
pomerium-authorize:
62-
image: pomerium.com/pomerium/pomerium:latest # or `build: .` to build from source
62+
image: pomerium/pomerium:latest # or `build: .` to build from source
6363
restart: always
6464
environment:
6565
- SERVICES=authorize
@@ -76,7 +76,7 @@ services:
7676
- 443
7777

7878
pomerium-databroker:
79-
image: pomerium.com/pomerium/pomerium:latest # or `build: .` to build from source
79+
image: pomerium/pomerium:latest # or `build: .` to build from source
8080
restart: always
8181
environment:
8282
- SERVICES=databroker
@@ -93,7 +93,7 @@ services:
9393

9494
# https://verify.corp.beyondperimeter.com
9595
verify:
96-
image: pomerium.com/pomerium/verify:latest
96+
image: pomerium/verify:latest
9797
expose:
9898
- 80
9999
# https://hello.corp.beyondperimeter.com

content/examples/enterprise/hosted-auth-docker.yaml.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
```yaml title="docker-compose.yaml"
22
services:
33
pomerium:
4-
image: pomerium.com/pomerium/pomerium:latest
4+
image: pomerium/pomerium:latest
55
volumes:
66
- ./config.yaml:/pomerium/config.yaml:ro
77
ports:
@@ -57,7 +57,7 @@ services:
5757
volumes:
5858
- pgdata:/var/lib/postgresql/data
5959
verify:
60-
image: pomerium.com/pomerium/verify:latest
60+
image: pomerium/verify:latest
6161
expose:
6262
- 8000
6363
restart: always

0 commit comments

Comments
 (0)