Skip to content

Commit

Permalink
bugfix: Update docker-compose.yml images and nginx config mount
Browse files Browse the repository at this point in the history
  • Loading branch information
vaugenwake committed Feb 1, 2024
1 parent bd9c17a commit b3f2cdf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/docker-compose.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
image: nginx:1
volumes:
- ./:/app
- docker/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
working_dir: /app
depends_on:
php:
Expand All @@ -14,15 +14,15 @@ services:
- "80:80"

php:
image: php:8.3
image: php:8.3-fpm
volumes:
- ./:/app
depends_on:
composer:
condition: service_completed_successfully

composer:
build: composer:2
image: composer:2
volumes:
- ./:/app
command: [ "composer", "install", "--no-dev" ]

0 comments on commit b3f2cdf

Please sign in to comment.