Skip to content

Commit

Permalink
Update EXPOSE port command (#706)
Browse files Browse the repository at this point in the history
* Added TCP port 80

* Remove port 8080 that is not exposed by the Dockerfile
  • Loading branch information
SamuelMwangiW committed Jul 22, 2024
1 parent 0adb232 commit 48d8960
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion runtimes/8.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY php.ini /etc/php/8.0/cli/conf.d/99-sail.ini
RUN chmod +x /usr/local/bin/start-container

EXPOSE 8000
EXPOSE 80/tcp

ENTRYPOINT ["start-container"]
2 changes: 1 addition & 1 deletion runtimes/8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY php.ini /etc/php/8.1/cli/conf.d/99-sail.ini
RUN chmod +x /usr/local/bin/start-container

EXPOSE 8000
EXPOSE 80/tcp

ENTRYPOINT ["start-container"]
2 changes: 1 addition & 1 deletion runtimes/8.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY php.ini /etc/php/8.2/cli/conf.d/99-sail.ini
RUN chmod +x /usr/local/bin/start-container

EXPOSE 8000
EXPOSE 80/tcp

ENTRYPOINT ["start-container"]
2 changes: 1 addition & 1 deletion runtimes/8.3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,6 @@ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY php.ini /etc/php/8.3/cli/conf.d/99-sail.ini
RUN chmod +x /usr/local/bin/start-container

EXPOSE 8000
EXPOSE 80/tcp

ENTRYPOINT ["start-container"]

0 comments on commit 48d8960

Please sign in to comment.