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
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,13 +57,18 @@ docker compose up -d --build container_name
57
57
```
58
58
- `/swarm`: Rebuild your container in a docker swarm. This is equivalent to:
59
59
```bash
60
-
docker service update --image container_image --with-registry-auth --force container_name
60
+
docker service update --image container_image --force container_name
61
61
```
62
62
Where the `container_image` gets automatically looked up from the `container_name`.
63
63
64
+
- Optionally add `{"with_registry_auth": true}` to the payload to add `--with-registry-auth` for private repositories.
65
+
64
66
These endpoints are async. Meaning after request validation will return while the docker commands will process in the background.
65
67
66
-
## Pipeline Example
68
+
## Action Example
69
+
There is an action published to the Github marketplace created from [bbilly1/docker-delivery-hook-action](https://github.com/bbilly1/docker-delivery-hook-action). See the instructions there with example usage.
0 commit comments