mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 13:17:55 +00:00
46 lines
1021 B
YAML
Vendored
46 lines
1021 B
YAML
Vendored
version: "2"
|
|
services:
|
|
chirpstack-api-rust:
|
|
environment:
|
|
- VERSION=4.0.0
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-rust
|
|
command: bash -c "cd rust && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-go:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-go
|
|
command: bash -c "cd go && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-grpc-web:
|
|
environment:
|
|
- VERSION=4.0.0
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-grpc-web
|
|
command: bash -c "cd grpc-web && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-js:
|
|
environment:
|
|
- VERSION=4.0.0
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-js
|
|
command: bash -c "cd js && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-python:
|
|
environment:
|
|
- VERSION=4.0.0
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-python
|
|
command: bash -c "cd js && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|