Skip to content
Snippets Groups Projects
Commit 9ea0c4ae authored by Etienne LOUPIAS's avatar Etienne LOUPIAS
Browse files

fix: docker compose volumes persistence

parent 68c71ed2
No related branches found
No related tags found
4 merge requests!97release V1.10.0,!96release V1.10.0,!91fix docker compose volumes,!90fix docker compose volumes
......@@ -84,7 +84,7 @@ services:
environment:
MYSQL_ROOT_PASSWORD: ${GHOST_DB_PASSWORD}
volumes:
- db-ghost
- db-ghost:/var/lib/mysql
es01:
image: elasticsearch:7.6.1
......@@ -96,7 +96,7 @@ services:
xpack.security.enabled: ${ELASTIC_SECURITY}
ELASTIC_PASSWORD: ${ELASTICSEARCH_PASSWORD}
volumes:
- db-elastic
- db-elastic:/usr/share/elasticsearch/data
networks:
- elastic
ports:
......@@ -120,10 +120,14 @@ services:
volumes:
db-ram:
driver: local
db-ghost:
driver: local
db-elastic:
driver: local
networks:
backend:
driver: bridge
elastic:
driver: bridge
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment