doorboy-proxy/docker-compose.dev.yml

24 lines
539 B
YAML
Raw Normal View History

2021-03-23 09:34:08 +00:00
version: '3.7'
services:
mongoexpress:
image: mongo-express
network_mode: host
environment:
- ME_CONFIG_MONGODB_ENABLE_ADMIN=true
- ME_CONFIG_MONGODB_SERVER=127.0.0.1
- ME_CONFIG_MONGODB_PORT=27017
- ME_CONFIG_MONGODB_AUTH_DATABASE=admin
2021-04-04 18:56:44 +00:00
2021-03-23 09:34:08 +00:00
mongo:
network_mode: host
image: mongo:latest
2021-04-04 18:56:44 +00:00
2021-03-23 09:34:08 +00:00
doorboy_proxy:
network_mode: host
2021-04-04 18:56:44 +00:00
environment:
MONGO_URI=mongodb://127.0.0.1:27017/kspace_accounting?replicaSet=kspace-mongo-set
DOORBOY_SECRET=keykeykey
2021-03-23 09:34:08 +00:00
build:
context: .