Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docker config #5309

Merged
merged 2 commits into from
Oct 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions docker/docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,16 @@ services:
- ./../.env.dev:/var/www/catroweb/.env.dev
- ./../.env.test:/var/www/catroweb/.env.test
- ./../.env.prod:/var/www/catroweb/.env.prod
# - ./../.env.local:/var/www/catroweb/.env.local # useful for deploying
# - ./../.env.local:/var/www/catroweb/.env.local # useful for deploying, but not working with github testing workflow
- ./../deploy.php:/var/www/catroweb/deploy.php
- ./../composer.json:/var/www/catroweb/composer.json
- ./../composer.lock:/var/www/catroweb/composer.lock
- ./../symfony.lock:/var/www/catroweb/symfony.lock
- ./../webpack.config.js:/var/www/catroweb/webpack.config.js
- ./../.stylelintrc.json:/var/www/catroweb/.stylelintrc.json

# sharing package files might not work on windows
# - ./../package.json:/var/www/catroweb/package.json
# - ./../package-lock.json:/var/www/catroweb/package-lock.json
# sharing package files on windows might not work as expected
- ./../package.json:/var/www/catroweb/package.json
- ./../package-lock.json:/var/www/catroweb/package-lock.json

db.catroweb.dev:
image: mariadb:10.11
Expand Down
Loading