forked from k-space/doorboy-proxy
Simplify and clean up
This commit is contained in:
23
docker-compose.dev.yml
Normal file
23
docker-compose.dev.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
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
|
||||
|
||||
mongo:
|
||||
network_mode: host
|
||||
image: mongo:latest
|
||||
|
||||
doorboy_proxy:
|
||||
network_mode: host
|
||||
environment:
|
||||
MONGO_URI=mongodb://127.0.0.1:27017/kspace_accounting?replicaSet=kspace-mongo-set
|
||||
DOORBOY_SECRET=keykeykey
|
||||
build:
|
||||
context: .
|
||||
Reference in New Issue
Block a user