Skip to content

Commit

Permalink
Update docker image to use Drupal 10 (#24)
Browse files Browse the repository at this point in the history
* Update Dockerfile to use Drupal 10

* Update docker-compose.yml to use mariadb:lts
  • Loading branch information
giteshk authored Jul 28, 2023
1 parent ec56d65 commit 89d23d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ COPY --from=composer /usr/bin/composer /usr/bin/composer

WORKDIR /app/code/web

RUN curl https://raw.githubusercontent.com/apigee/devportal-kickstart-project-composer/9.x/composer.json -o /app/code/composer.json \
&& curl https://raw.githubusercontent.com/apigee/devportal-kickstart-project-composer/9.x/LICENSE.txt -o /app/code/LICENSE.txt
RUN curl https://raw.githubusercontent.com/apigee/devportal-kickstart-project-composer/10.x/composer.json -o /app/code/composer.json \
&& curl https://raw.githubusercontent.com/apigee/devportal-kickstart-project-composer/10.x/LICENSE.txt -o /app/code/LICENSE.txt

#OVERRIDE custom code folder if any
COPY code /app/code
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ services:
- drupal-public-files:/app/code/web/sites/default/files
- drupal-private-files:/app/code/web/sites/default/private
apigee-kickstart-database:
image: mariadb:10.6
image: mariadb:lts
volumes:
- apigee-kickstart-database-volume:/var/lib/mysql:delegated
environment:
Expand Down

0 comments on commit 89d23d6

Please sign in to comment.