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: docs/docs/guides/repository.mdx
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -305,7 +305,7 @@ This guide makes the assumption that you have saved the CA certificate file as `
305
305
Next we will have to create a Dockerfile. The file should be saved as `Dockerfile` in the same directory as the directory containing the CA certificate you want to install.
306
306
307
307
```dockerfile
308
-
ARG INFRAHUB_VERSION=0.16.0
308
+
ARG INFRAHUB_VERSION=latest
309
309
FROM registry.opsmill.io/opsmill/infrahub:${INFRAHUB_VERSION}
This will build a custom docker image and tag it as `custom/infrahub:0.16.0`. You can change the version by changing the version we set in the `INFRAHUB_VERSION` shell variable and you can change the tag to you own preference.
321
+
This will build a custom docker image and tag it as `custom/infrahub:latest`. You can change the version by changing the version we set in the `INFRAHUB_VERSION` shell variable and you can change the tag to you own preference.
322
322
323
323
As a last step we have to create a `docker-compose.override.yml` file with the following contents in the `development` directory of your clone of the Infrahub repository.
324
324
325
325
```yaml
326
326
---
327
327
services:
328
328
task-worker:
329
-
image: custom/infrahub:0.16.0
329
+
image: custom/infrahub:latest
330
330
```
331
331
332
332
A development environment can then be spun up with `invoke demo.start` command as, explained in the [Installing Infrahub guide](/guides/installation).
@@ -350,7 +350,7 @@ In this process we will have to build a custom docker image. This docker image w
350
350
We will have to create a Dockerfile, that should be saved as `Dockerfile` on your local filesystem.
351
351
352
352
```dockerfile
353
-
ARG INFRAHUB_VERSION=0.16.0
353
+
ARG INFRAHUB_VERSION=latest
354
354
FROM registry.opsmill.io/opsmill/infrahub:${INFRAHUB_VERSION}
355
355
356
356
RUN git config --global http.sslVerify "false"
@@ -359,18 +359,18 @@ RUN git config --global http.sslVerify "false"
359
359
We then have to build a Docker image from the Dockerfile. We can do this by executing this command
This will build a custom docker image and tag it as `custom/infrahub:0.16.0`. You can change the version by changing the version we set in the `INFRAHUB_VERSION` shell variable and you can change the tag to you own preference.
365
+
This will build a custom docker image and tag it as `custom/infrahub:latest`. You can change the version by changing the version we set in the `INFRAHUB_VERSION` shell variable and you can change the tag to you own preference.
366
366
367
367
As a last step we have to create a `docker-compose.override.yml` file with the following contents in the `development` directory of your clone of the Infrahub repository.
368
368
369
369
```yaml
370
370
---
371
371
services:
372
372
task-worker:
373
-
image: custom/infrahub:0.16.0
373
+
image: custom/infrahub:latest
374
374
```
375
375
376
376
A development environment can then be spun up with `invoke demo.start` command as, explained in the [Installing Infrahub guide](/guides/installation).
@@ -394,7 +394,7 @@ In this process we will have to build a custom docker image. This docker image w
394
394
We will have to create a Dockerfile, that should be saved as `Dockerfile` on your local filesystem. In the Dockerfile you will have to adapt the URL for the proxy to your environment. Replace `user:password` with the username and password you have to use for the proxy, if required. Replace the FQDN `internal.proxy` to the FQDN of the proxy and modify the port, if required.
395
395
396
396
```dockerfile
397
-
ARG INFRAHUB_VERSION=0.16.0
397
+
ARG INFRAHUB_VERSION=latest
398
398
FROM registry.opsmill.io/opsmill/infrahub:${INFRAHUB_VERSION}
399
399
400
400
RUN git config --global http.proxy http://user:[email protected]:8080
This will build a custom docker image and tag it as `custom/infrahub:0.16.0`. You can change the version by changing the version we set in the `INFRAHUB_VERSION` shell variable and you can change the tag to you own preference.
409
+
This will build a custom docker image and tag it as `custom/infrahub:latest`. You can change the version by changing the version we set in the `INFRAHUB_VERSION` shell variable and you can change the tag to you own preference.
410
410
411
411
As a last step we have to create a `docker-compose.override.yml` file with the following contents in the `development` directory of your clone of the Infrahub repository.
412
412
413
413
```yaml
414
414
---
415
415
services:
416
416
task-worker:
417
-
image: custom/infrahub:0.16.0
417
+
image: custom/infrahub:latest
418
418
```
419
419
420
420
A development environment can then be spun up with `invoke demo.start` command as, explained in the [Installing Infrahub guide](/guides/installation).
0 commit comments