Skip to content
Extraits de code Groupes Projets
Non vérifiée Valider 969a10a5 rédigé par Eugen Rochko's avatar Eugen Rochko Validation de GitHub
Parcourir les fichiers

Persist volumes by default in docker-compose (#9055)

Too many databases were lost to this
parent 81017eae
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -6,18 +6,16 @@ services: ...@@ -6,18 +6,16 @@ services:
image: postgres:9.6-alpine image: postgres:9.6-alpine
networks: networks:
- internal_network - internal_network
### Uncomment to enable DB persistence volumes:
# volumes: - ./postgres:/var/lib/postgresql/data
# - ./postgres:/var/lib/postgresql/data
redis: redis:
restart: always restart: always
image: redis:4.0-alpine image: redis:4.0-alpine
networks: networks:
- internal_network - internal_network
### Uncomment to enable REDIS persistence volumes:
# volumes: - ./redis:/data
# - ./redis:/data
# es: # es:
# restart: always # restart: always
...@@ -26,9 +24,8 @@ services: ...@@ -26,9 +24,8 @@ services:
# - "ES_JAVA_OPTS=-Xms512m -Xmx512m" # - "ES_JAVA_OPTS=-Xms512m -Xmx512m"
# networks: # networks:
# - internal_network # - internal_network
#### Uncomment to enable ES persistence # volumes:
## volumes: # - ./elasticsearch:/usr/share/elasticsearch/data
## - ./elasticsearch:/usr/share/elasticsearch/data
web: web:
build: . build: .
...@@ -68,7 +65,7 @@ services: ...@@ -68,7 +65,7 @@ services:
image: tootsuite/mastodon image: tootsuite/mastodon
restart: always restart: always
env_file: .env.production env_file: .env.production
command: bundle exec sidekiq -q default -q push -q mailers -q pull command: bundle exec sidekiq
depends_on: depends_on:
- db - db
- redis - redis
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter