This repository has been archived on 2020-09-24. You can view files and clone it, but cannot push or open issues or pull requests.
p2p-storage-simulator/docker-compose.yml

64 lines
1.5 KiB
YAML
Raw Normal View History

2020-03-31 23:09:21 +02:00
version: '3.4'
2020-03-09 16:52:27 +01:00
networks:
2020-03-31 23:09:21 +02:00
firstsubnet:
2020-03-31 23:55:52 +02:00
external: false
2020-03-31 23:09:21 +02:00
driver: bridge
ipam:
driver: default
config:
2020-03-31 23:55:52 +02:00
- subnet: 192.168.1.0/24
2020-03-09 16:52:27 +01:00
services:
2020-03-31 23:09:21 +02:00
producer1:
2020-03-31 23:55:52 +02:00
image: tormachris/producer
2020-03-31 23:09:21 +02:00
networks:
firstsubnet:
ipv4_address: 192.168.1.11
producer2:
2020-03-31 23:55:52 +02:00
image: tormachris/producer
2020-03-31 23:09:21 +02:00
networks:
firstsubnet:
ipv4_address: 192.168.1.12
2020-03-09 16:52:27 +01:00
2020-03-31 23:55:52 +02:00
consumer-api1:
image: tormachris/consumer_api
2020-03-31 23:09:21 +02:00
environment:
2020-03-31 23:55:52 +02:00
- REDIS_URL=redis://192.168.1.31
- LOCAL_UUID=31
2020-03-31 23:09:21 +02:00
networks:
firstsubnet:
ipv4_address: 192.168.1.21
2020-03-31 23:55:52 +02:00
consumer-api2:
image: tormachris/consumer_api
environment:
- REDIS_URL=redis://192.168.1.32
- LOCAL_UUID=32
2020-03-31 23:09:21 +02:00
networks:
firstsubnet:
ipv4_address: 192.168.1.22
2020-03-31 23:55:52 +02:00
consumer-scheduler1:
image: tormachris/consumer-scheduler
environment:
- REDIS_URL=redis://192.168.1.31
- INITIAL_SERVERS=192.168.1.22
network_mode: "service:consumer-api1"
consumer-scheduler2:
image: tormachris/consumer-scheduler
environment:
- REDIS_URL=redis://192.168.1.32
- INITIAL_SERVERS=192.168.1.21
network_mode: "service:consumer-api2"
2020-03-31 23:09:21 +02:00
redis1:
image: redis
2020-03-31 23:55:52 +02:00
network_mode: "service:consumer-api1"
2020-03-31 23:09:21 +02:00
redis2:
image: redis
2020-03-31 23:55:52 +02:00
network_mode: "service:consumer-api2"