34 lines
861 B
YAML
34 lines
861 B
YAML
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
|
|
logging:
|
|
driver: none
|
|
|
|
mongo:
|
|
network_mode: host
|
|
image: mongo:latest
|
|
volumes:
|
|
- ./mongo-init.sh:/docker-entrypoint-initdb.d/mongo-init.sh:ro
|
|
command: mongod --replSet rs0 --bind_ip 127.0.0.1
|
|
logging:
|
|
driver: none
|
|
|
|
doorboy_proxy:
|
|
network_mode: host
|
|
environment:
|
|
DOORBOY_SECRET_FLOOR: "0123456789"
|
|
DOORBOY_SECRET_WORKSHOP: "9999999999"
|
|
FLOOR_ACCESS_GROUP: "k-space:floor"
|
|
WORKSHOP_ACCESS_GROUP: "k-space:workshop"
|
|
CARD_URI: "https://inventory-app-72zn4.codemowers.ee/cards"
|
|
build:
|
|
context: .
|