blob: 88e705b9681886a023e988c84445fabc87923031 [file] [log] [blame]
## ---------------------------------------------------------------------------
## Licensed to the Apache Software Foundation (ASF) under one or more
## contributor license agreements. See the NOTICE file distributed with
## this work for additional information regarding copyright ownership.
## The ASF licenses this file to You under the Apache License, Version 2.0
## (the "License"); you may not use this file except in compliance with
## the License. You may obtain a copy of the License at
##
## http://www.apache.org/licenses/LICENSE-2.0
##
## Unless required by applicable law or agreed to in writing, software
## distributed under the License is distributed on an "AS IS" BASIS,
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
## See the License for the specific language governing permissions and
## limitations under the License.
## ---------------------------------------------------------------------------
version: '3.3'
services:
mongo:
image: mongo:4.0
container_name: mongo
command: mongod --replSet rs/127.0.0.1:27017
ports:
- 27017:27017
healthcheck:
test: ["CMD-SHELL", "echo 'db.runCommand({serverStatus: 1}).ok | mongo mongo:27017 --quiet'"]
interval: 5s
timeout: 5s
retries: 3
mongo_cfg:
image: mongo:4.0
container_name: mongo_cfg
command: |
bash -c "echo 'rs.initiate({_id: \"rs\", members: [{_id: 0, host: \"127.0.0.1:27017\"}]})' | mongo mongo:27017 --quiet"
depends_on:
mongo:
condition: service_healthy