Skip to content

Commit 7352726

Browse files
committed
Updated dev docker files
1 parent 6cd5f2f commit 7352726

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile_dev

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM php:8.3.6-fpm
33
# Let's use bash as a default shell with login each time
44
SHELL ["/bin/bash", "--login", "-c"]
55

6-
# Decrale used arguments from `docker-compose.yml` file
6+
# Decrale used arguments from `compose.yaml` file
77
ARG HOST_UID
88
ARG HOST_GID
99

@@ -77,7 +77,7 @@ RUN composer completion bash > /etc/bash_completion.d/composer
7777

7878
# Copy development `php.ini` and PHP-FPM pool configuration to container
7979
#
80-
# Also note that these files mounted within `docker-compose.yml` file, so
80+
# Also note that these files mounted within `compose.yaml` file, so
8181
# you don't need to build containers again if you change something just
8282
# restart containers and you're good
8383
COPY ./docker/php/php-dev.ini /usr/local/etc/php/php.ini

docker/nginx/Dockerfile_dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nginx:latest
22

3-
# Note that this `nginx-dev.conf` is also mounted within `docker-compose.yml`
3+
# Note that this `nginx-dev.conf` is also mounted within `compose.yaml`
44
# so you don't need to build containers if you change something there, restart
55
# should do the trick
66
ADD nginx-dev.conf /etc/nginx/conf.d/default.conf

0 commit comments

Comments
 (0)