Skip to content

Commit

Permalink
Remove unneeded quotes from compose file (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmohns authored Jan 25, 2024
1 parent 9e2e0e9 commit c26af86
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.1"

services:
'laravel':
laravel:
container_name: laravel
build:
context: Docker/
Expand All @@ -18,7 +18,7 @@ services:
- ./Website/config/php/php.ini:/usr/local/etc/php/php.ini
- ./Website/htdocs:/var/www/html

'ui':
ui:
container_name: ui
build:
context: ./Website/ui/
Expand All @@ -29,7 +29,7 @@ services:
- ./Website/ui:/usr/app/
- frontend_node_modules:/usr/app/node_modules/

'cron':
cron:
container_name: cron_job
build:
context: Docker/
Expand All @@ -44,7 +44,7 @@ services:
- ./Website/config/php/php.ini:/usr/local/etc/php/php.ini
- ./Website/htdocs:/var/www/html

'worker':
worker:
container_name: worker
restart: unless-stopped
build:
Expand All @@ -67,12 +67,12 @@ services:
volumes:
- ./Website/htdocs/mpmanager:/app

'redis':
redis:
image: redis:5
volumes:
- ./redis/:/data

'maria':
maria:
container_name: maria
image: mariadb:10.3
env_file:
Expand Down

0 comments on commit c26af86

Please sign in to comment.