mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-20 13:43:11 +00:00
74b5d1a7ca
Co-authored-by: Stian Brandt <stian.brandt@it-smurfan.no>
59 lines
1.3 KiB
YAML
Vendored
59 lines
1.3 KiB
YAML
Vendored
version: "2"
|
|
services:
|
|
chirpstack-api-rust:
|
|
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:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-grpc-web
|
|
command: bash -c "cd grpc-web && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-js:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-js
|
|
command: bash -c "cd js && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-python:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-python
|
|
command: bash -c "cd python && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-md:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-md
|
|
command: bash -c "cd md && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-java:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-java
|
|
command: bash -c "cd java && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|
|
chirpstack-api-kotlin:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-kotlin
|
|
command: bash -c "cd kotlin && make all"
|
|
volumes:
|
|
- ./:/chirpstack/api
|