Skip to content

Commit

Permalink
Merge pull request #36 from nspalo/feature/DLT-26-update-docker-compo…
Browse files Browse the repository at this point in the history
…se-file

feature/DLT-26-update-docker-compose-file
  • Loading branch information
nspalo authored Aug 25, 2022
2 parents d2af171 + 0ef163c commit c90fe43
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ networks:
web-app:

services:
# Container: NginX
# +----------------------+ #
# | Container: NginX | #
# +----------------------+ #
nginx:
networks:
- web-app
Expand All @@ -22,7 +24,9 @@ services:
- php
- mysql

# Container: MySQL
# +----------------------+ #
# | Container: MySQL | #
# +----------------------+ #
mysql:
networks:
- web-app
Expand All @@ -47,7 +51,9 @@ services:
SERVICE_TAGS: dev
SERVICE_NAME: mysql

# Container: PHP
# +----------------------+ #
# | Container: PHP | #
# +----------------------+ #
php:
networks:
- web-app
Expand All @@ -61,7 +67,9 @@ services:
volumes:
- "${PATH_PROJECT_SOURCE}:/var/www/html"

# Container: Composer
# +----------------------+ #
# | Container: Composer | #
# +----------------------+ #
composer:
networks:
- web-app
Expand All @@ -75,7 +83,9 @@ services:
- "${PATH_PROJECT_SOURCE}:/var/www/html"
entrypoint: ['composer']

# Container: NPM
# +----------------------+ #
# | Container: NPM | #
# +----------------------+ #
npm:
networks:
- web-app
Expand All @@ -86,7 +96,9 @@ services:
- "${PATH_PROJECT_SOURCE}:/var/www/html"
entrypoint: ['npm']

# Container: Artisan
# +----------------------+ #
# | Container: Artisan | #
# +----------------------+ #
artisan:
networks:
- web-app
Expand Down

0 comments on commit c90fe43

Please sign in to comment.