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