Skip to content

Commit

Permalink
v6.2.0 (#111)
Browse files Browse the repository at this point in the history
* Update README.md

* Update Dockerfile

* Update docker-compose.yml
  • Loading branch information
thekevinm authored Jan 18, 2024
1 parent 0da53b5 commit dea7155
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN mkdir -p $TEMP_FOLDER $DESTINATION_FOLDER
# Download and install DreamFactory frontend
RUN cd $TEMP_FOLDER && \
response=$(curl -s -H "Accept: application/vnd.github.v3+json" "https://api.github.com/repos/$REPO_OWNER/releases") && \
latest_release=$(echo "$response" | jq '.[] | .tag_name' | head -n 1 | tr -d '"') && \
latest_release=1.1.1 && \
release_url="$REPO_URL/releases/download/$latest_release/release.zip" && \
curl -LO "$release_url" && \
find "$DESTINATION_FOLDER" -type f \( -name "*.js" -o -name "*.css" \) -exec rm {} \; && \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</h1>

<p align="center">
Docker container for DreamFactory 5.x using Ubuntu 22.04, PHP 8.1 and NGINX.
Docker container for DreamFactory 6.x using Ubuntu 22.04, PHP 8.1 and NGINX.
</p>

<p align="center">
Expand Down
2 changes: 2 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ services:
image: redis

web:
depends_on:
- mysql
environment:
SERVERNAME: dreamfactory.local
# HTTPS_HEADER: "on"
Expand Down

0 comments on commit dea7155

Please sign in to comment.