@@ -30,7 +30,7 @@ scenario.
3030Run with minimal functionality for use with ** Continue** :
3131
3232``` bash
33- docker run -d -p 8989:8989 -p 9090:80 ghcr.io/stacklok/codegate:latest
33+ docker run -d -p 8989:8989 -p 9090:80 --restart unless-stopped ghcr.io/stacklok/codegate:latest
3434```
3535
3636The container runs in the background (` -d ` ), binds the CodeGate API endpoint to
@@ -40,14 +40,14 @@ Mount a **persistent volume** to the container (see
4040[ Persisting dashboard data] ( ./dashboard.md#persisting-dashboard-data ) ):
4141
4242``` bash
43- docker run --name codegate -d -p 8989:8989 -p 9090:80 --mount type=volume,src=codegate_volume,dst=/app/codegate_volume ghcr.io/stacklok/codegate:latest
43+ docker run --name codegate -d -p 8989:8989 -p 9090:80 --mount type=volume,src=codegate_volume,dst=/app/codegate_volume --restart unless-stopped ghcr.io/stacklok/codegate:latest
4444```
4545
46- ** Copilot support:** enable the HTTP proxy port and mount a persistent volume (see
47- [ Use CodeGate with GitHub Copilot] ( ./use-with-copilot.mdx ) ):
46+ ** Copilot support:** enable the HTTP proxy port and mount a persistent volume
47+ (see [ Use CodeGate with GitHub Copilot] ( ./use-with-copilot.mdx ) ):
4848
4949``` bash
50- docker run --name codegate -d -p 8989:8989 -p 9090:80 -p 8990:8990 --mount type=volume,src=codegate_volume,dst=/app/codegate_volume ghcr.io/stacklok/codegate:latest
50+ docker run --name codegate -d -p 8989:8989 -p 9090:80 -p 8990:8990 --mount type=volume,src=codegate_volume,dst=/app/codegate_volume --restart unless-stopped ghcr.io/stacklok/codegate:latest
5151```
5252
5353::: tip
@@ -116,8 +116,8 @@ docker stop codegate
116116docker rm codegate
117117```
118118
119- Finally, launch the new version using the same ` docker run ` command you used
120- originally.
119+ Finally, launch the new version using the [ same ` docker run ` command] ( #examples )
120+ you used originally.
121121
122122## Manage the CodeGate container
123123
0 commit comments