post decaffeinate compose

This commit is contained in:
jums
2019-11-28 17:06:41 +01:00
parent 9fecb7d858
commit 06ccd97dd8
2 changed files with 2 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# Use with `docker-compose.yml`. Use the -f option # Override `docker-compose.yml`. Use the -f option
# to specify the list of files. Compose merges files in the # to specify the list of files. Compose merges files in the
# order theyre specified on the command line. # order theyre specified on the command line.
# See https://docs.docker.com/compose/extends # See https://docs.docker.com/compose/extends
@@ -6,7 +6,6 @@ version: '3'
services: services:
couch: couch:
volumes: volumes:
# backup folder when container is removed
- './data/couch-test:/usr/local/var/lib/couchdb' - './data/couch-test:/usr/local/var/lib/couchdb'
inventaire: inventaire:
ports: [ "3009:3009" ] ports: [ "3009:3009" ]

View File

@@ -31,7 +31,6 @@ services:
ports : ports :
- '127.0.0.1:9200:9200' - '127.0.0.1:9200:9200'
volumes: volumes:
# backup folder when ES container is removed
- './data/es:/usr/share/elasticsearch/data' - './data/es:/usr/share/elasticsearch/data'
network_mode: host network_mode: host
logging: logging:
@@ -40,7 +39,7 @@ services:
build: build:
context: ./. context: ./.
dockerfile: Dockerfile.entities-search-engine dockerfile: Dockerfile.entities-search-engine
command: 'node_modules/coffee-script/bin/coffee server/server.coffee' command: 'node server/server.js'
ports: ports:
- "3213:3213" - "3213:3213"
volumes: volumes: