Feat docker file#159
Conversation
| image | ||
| ? `https://beaconnect-image-imagebucket-ft90dpqhkbr1.s3.ap-southeast-1.amazonaws.com/${image}` | ||
| ? `${ | ||
| process.env.REACT_APP_IMAGE_VIEW_URL || |
There was a problem hiding this comment.
Consider REACT_APP_IMAGE_BUCKET_URL ?
| body: base64Data, | ||
| }) | ||
| fetch( | ||
| process.env.REACT_APP_IMAGE_SERVER_URL || |
There was a problem hiding this comment.
Consider REACT_APP_IMAGE_UPLOAD_URL ?
|
|
||
| const httpLink = createHttpLink({ | ||
| uri: 'https://h8e9hgszz8.execute-api.ap-southeast-1.amazonaws.com/Prod/graphql', | ||
| uri: process.env.REACT_APP_API_URL || 'https://h8e9hgszz8.execute-api.ap-southeast-1.amazonaws.com/Prod/graphql', |
There was a problem hiding this comment.
Consider REACT_APP_GRAPHQL_BACKEND_URL ?
| data?.reBit?.author?.info?.image | ||
| ? `https://beaconnect-image-imagebucket-ft90dpqhkbr1.s3.ap-southeast-1.amazonaws.com/${data?.reBit?.author?.info?.image}` | ||
| ? `${ | ||
| process.env.REACT_APP_IMAGE_VIEW_URL || |
There was a problem hiding this comment.
Consider REACT_APP_IMAGE_BUCKET_URL ?
| data?.author?.info?.image | ||
| ? `https://beaconnect-image-imagebucket-ft90dpqhkbr1.s3.ap-southeast-1.amazonaws.com/${data?.author?.info?.image}` | ||
| ? `${ | ||
| process.env.REACT_APP_IMAGE_VIEW_URL || |
There was a problem hiding this comment.
Consider REACT_APP_IMAGE_BUCKET_URL ?
| profileDetails?.info?.image | ||
| ? `https://beaconnect-image-imagebucket-ft90dpqhkbr1.s3.ap-southeast-1.amazonaws.com/${profileDetails?.info?.image}` | ||
| ? `${ | ||
| process.env.REACT_APP_IMAGE_VIEW_URL || |
There was a problem hiding this comment.
Consider REACT_APP_IMAGE_BUCKET_URL ?
| userInfo?.info?.image | ||
| ? `https://beaconnect-image-imagebucket-ft90dpqhkbr1.s3.ap-southeast-1.amazonaws.com/${userInfo?.info.image}` | ||
| ? `${ | ||
| process.env.REACT_APP_IMAGE_VIEW_URL || |
There was a problem hiding this comment.
Consider REACT_APP_IMAGE_BUCKET_URL ?
| @@ -0,0 +1,53 @@ | |||
| version: "3.8" | |||
There was a problem hiding this comment.
It will raise warning for newer version of docker compose (In my case 2.27.1)
docker-compose.yml: version is obsolete
There was a problem hiding this comment.
I cannot build the the services using docker compose. Why do you want to use it ?
There was a problem hiding this comment.
Please remove unnecessary comment
No description provided.