version: "2" services: loraserver: image: loraserver/loraserver:1 volumes: - ./configuration/loraserver:/etc/loraserver appserver: image: loraserver/lora-app-server:1 ports: - 8080:8080 volumes: - ./configuration/lora-app-server:/etc/lora-app-server gatewaybridge: image: loraserver/lora-gateway-bridge:2 ports: - 1700:1700/udp volumes: - ./configuration/lora-gateway-bridge:/etc/lora-gateway-bridge postgresql: image: postgres:9.6-alpine ports: - 5432 volumes: - ./configuration/postgresql/initdb:/docker-entrypoint-initdb.d - ./data/postgresql:/var/lib/postgresql/data redis: ports: - 6379 image: redis:4-alpine volumes: - ./data/redis:/data mosquitto: image: eclipse-mosquitto ports: - 1883:1883