Skip to content

Commit

Permalink
chore: Removed useless volume flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Nov 14, 2024
1 parent 70a4943 commit 0508c65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
networks:
- default
volumes:
- "./.data/db:/var/lib/mysql:delegated"
- "./.data/db:/var/lib/mysql"
environment:
MYSQL_RANDOM_ROOT_PASSWORD: 1
MYSQL_DATABASE: ${MYSQL_DATABASE:-db_name}
Expand All @@ -23,7 +23,7 @@ services:
networks:
- default
volumes:
- "./.data/db_test:/var/lib/mysql:delegated"
- "./.data/db_test:/var/lib/mysql"
environment:
MYSQL_RANDOM_ROOT_PASSWORD: 1
MYSQL_DATABASE: ${MYSQL_TEST_DATABASE:-db_name_test}
Expand Down Expand Up @@ -60,7 +60,7 @@ services:
args:
UID: ${UID:-1000}
volumes:
- "solr_data:/var/solr:delegated"
- "solr_data:/var/solr"
command:
- solr-precreate
- ${SOLR_CORE_NAME}
Expand Down Expand Up @@ -129,7 +129,7 @@ services:
- app
volumes:
# Need to share all app files for relative symlink to work in development
- ./:/app:cached
- ./:/app
networks:
- default
- frontproxynet
Expand Down

0 comments on commit 0508c65

Please sign in to comment.