Skip to content

Commit

Permalink
Type fix in tiltfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sharmaamitt16 committed Jul 28, 2020
1 parent d1cd627 commit e018e94
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion starterkits/drupal8-php-fpm-apache/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker_compose('docker-compose.yml')
# Change this in case you want to use someother version of php(supported: 7.2, 7.3 & .7.4).
# Please ensure to change PHP_VERSION in .env file as well.
php_version = "7.3"
docker_build('srijanlabs/php-fpm-apache:' + php_version + '-10-local', '.',
docker_build('srijanlabs/php-fpm-apache:' + php_version + '-buster-local', '.',
build_args={'PHP_VERSION': php_version},
dockerfile='Dockerfile.dev',
live_update = [
Expand Down
2 changes: 1 addition & 1 deletion starterkits/drupal8-php-fpm-nginx/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker_compose('docker-compose.yml')
# Change this in case you want to use someother version of php(supported: 7.2, 7.3 & .7.4).
# Please ensure to change PHP_VERSION in .env file as well.
php_version = "7.3"
docker_build('srijanlabs/php-fpm-nginx:' + php_version + '-10-local', '.',
docker_build('srijanlabs/php-fpm-nginx:' + php_version + '-buster-local', '.',
build_args={'PHP_VERSION': php_version},
dockerfile='Dockerfile.dev',
live_update = [
Expand Down
2 changes: 1 addition & 1 deletion starterkits/drupal9-php-fpm-apache/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker_compose('docker-compose.yml')
# Change this in case you want to use someother version of php(supported: 7.2, 7.3 & .7.4).
# Please ensure to change PHP_VERSION in .env file as well.
php_version = "7.3"
docker_build('srijanlabs/php-fpm-apache:' + php_version + '-10-local', '.',
docker_build('srijanlabs/php-fpm-apache:' + php_version + '-buster-local', '.',
build_args={'PHP_VERSION': php_version},
dockerfile='Dockerfile.dev',
live_update = [
Expand Down
2 changes: 1 addition & 1 deletion starterkits/drupal9-php-fpm-nginx/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker_compose('docker-compose.yml')
# Change this in case you want to use someother version of php(supported: 7.2, 7.3 & .7.4).
# Please ensure to change PHP_VERSION in .env file as well.
php_version = "7.3"
docker_build('srijanlabs/php-fpm-nginx:' + php_version + '-10-local', '.',
docker_build('srijanlabs/php-fpm-nginx:' + php_version + '-buster-local', '.',
build_args={'PHP_VERSION': php_version},
dockerfile='Dockerfile.dev',
live_update = [
Expand Down
2 changes: 1 addition & 1 deletion starterkits/ezcontent8-php-fpm-apache/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker_compose('docker-compose.yml')
# Change this in case you want to use someother version of php(supported: 7.2, 7.3 & .7.4).
# Please ensure to change PHP_VERSION in .env file as well.
php_version = "7.3"
docker_build('srijanlabs/php-fpm-apache:' + php_version + '-10-local', '.',
docker_build('srijanlabs/php-fpm-apache:' + php_version + '-buster-local', '.',
build_args={'PHP_VERSION': php_version},
dockerfile='Dockerfile.dev',
live_update = [
Expand Down
2 changes: 1 addition & 1 deletion starterkits/node-express-postgres/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docker_compose('docker-compose.yml')

docker_build(
# Image name - must match the image in the docker-compose file
'srijanlabs/node:' + node_version + '-10-local',
'srijanlabs/node:' + node_version + '-buster-local',
'.',
build_args={'NODE_VERSION': node_version},
dockerfile='Dockerfile.dev',
Expand Down

0 comments on commit e018e94

Please sign in to comment.