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

remove bind options from volumes #59

Merged
merged 1 commit into from
Sep 12, 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
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ services:
<<: [*dev, *common]
image: ${ISLANDORA_REPOSITORY}/mariadb:${ISLANDORA_TAG}
volumes:
- mariadb-data:/var/lib/mysql:Z,rw
- mariadb-data:/var/lib/mysql:rw
networks:
default:
aliases: # Allow access without using the `-dev` or `-prod` suffix.
Expand Down Expand Up @@ -227,7 +227,7 @@ services:
traefik.http.services.activemq.loadbalancer.server.port: 8161
traefik.subdomain: activemq
volumes:
- activemq-data:/opt/activemq/data:Z,rw
- activemq-data:/opt/activemq/data:rw
networks:
default:
aliases: # Allow access without using the `-dev` or `-prod` suffix.
Expand Down Expand Up @@ -256,7 +256,7 @@ services:
traefik.http.routers.blazegraph_https.tls: true
traefik.http.services.blazegraph.loadbalancer.server.port: 8080
volumes:
- blazegraph-data:/data:Z,rw
- blazegraph-data:/data:rw
networks:
default:
aliases: # Allow access without using the `-dev` or `-prod` suffix.
Expand Down Expand Up @@ -286,7 +286,7 @@ services:
traefik.http.routers.cantaloupe_https.tls: true
traefik.http.services.cantaloupe.loadbalancer.server.port: 8182
volumes:
- cantaloupe-data:/data:Z,rw
- cantaloupe-data:/data:rw
networks:
default:
aliases: # Allow access without using the `-dev` or `-prod` suffix.
Expand Down Expand Up @@ -498,7 +498,7 @@ services:
traefik.http.routers.fcrepo_https.tls: true
traefik.http.services.fcrepo.loadbalancer.server.port: 8080
volumes:
- fcrepo-data:/data:Z,rw
- fcrepo-data:/data:rw
networks:
default:
aliases: # Allow access without using the `-dev` or `-prod` suffix.
Expand Down Expand Up @@ -538,7 +538,7 @@ services:
traefik.http.routers.solr_https.tls: true
traefik.http.services.solr.loadbalancer.server.port: 8983
volumes:
- solr-data:/data:Z,rw
- solr-data:/data:rw
- type: volume
source: drupal-solr-config
target: /opt/solr/server/solr/default
Expand Down
Loading