File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -66,20 +66,22 @@ The following Environment Variables are available to configure the Proxy service
66
66
### Docker Image
67
67
68
68
#### Use pre-built docker image
69
+
69
70
Use docker image from Docker hub
70
71
``` bash
71
- # Run using pre-build docker image
72
+ # Run using pre-built docker image from docker hub
72
73
# Prepare environment variables in .env file
73
74
docker run -d -p 3000:3000 --env-file ./.env --name auth-proxy softrams/prefect-auth-proxy:latest
74
75
```
75
76
76
77
#### Build a local docker image
78
+
77
79
Build a local docker image (with any changes as needed) and publish to your own repository.
78
80
79
81
``` bash
80
82
# Build local docker image
81
83
docker build -t prefect-auth-proxy .
82
- # Run docker image
84
+ # Run local docker image
83
85
# Prepare environment variables in .env file
84
86
docker run -d -p 3000:3000 --env-file ./.env --name auth-proxy prefect-auth-proxy
85
87
```
You can’t perform that action at this time.
0 commit comments