47 lines
820 B
YAML
47 lines
820 B
YAML
name: "IoT-Gatherer-Project"
|
|
|
|
services:
|
|
iot-simulator:
|
|
image: "swift:latest"
|
|
volumes:
|
|
- .:/workspace
|
|
hostname: iot-simulator.internal
|
|
networks:
|
|
iot-network:
|
|
command: sleep infinity
|
|
|
|
leader-service:
|
|
build:
|
|
context: .
|
|
dockerfile: .devcontainer/DOCKERFILES/deno.dockerfile
|
|
volumes:
|
|
- .:/workspace
|
|
hostname: leader-service.internal
|
|
networks:
|
|
iot-network:
|
|
command: sleep infinity
|
|
|
|
publickey-backend:
|
|
build:
|
|
context: .
|
|
dockerfile: .devcontainer/DOCKERFILES/deno.dockerfile
|
|
volumes:
|
|
- .:/workspace
|
|
hostname: public-key-db.internal
|
|
networks:
|
|
iot-network:
|
|
command: sleep infinity
|
|
|
|
|
|
networks:
|
|
iot-network:
|
|
ipam:
|
|
config:
|
|
- subnet: 10.0.0.0/8
|
|
ip_range: 10.0.0.0/16
|
|
|
|
|
|
|
|
|
|
|