TestBed-Project/docker-compose.yaml
2024-12-13 16:04:45 +01:00

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