mmrelaynode/docker-compose.yaml

40 wiersze
771 B
YAML
Czysty Zwykły widok Historia

2023-08-20 12:44:23 +00:00
version: '3'
services:
mmrelaynode:
build:
context: .
2023-08-21 12:52:16 +00:00
dockerfile: Dockerfile_node
2023-08-21 21:20:08 +00:00
image: mmrelaynode
container_name: mmrelay-node
user: '1000:1000'
volumes:
- mesh_volume:/home/mesh
2023-08-20 12:44:23 +00:00
environment:
2023-08-21 21:20:08 +00:00
HWID: '12345' #change to your own hardware id
networks:
- mesh_net
2023-08-21 12:52:16 +00:00
volumes:
- mesh_volume:/home/mesh
2023-08-21 21:20:08 +00:00
ports:
- "4403:4403"
2023-08-20 12:44:23 +00:00
2023-08-21 21:20:08 +00:00
mmrelaynode:
build:
context: .
dockerfile: Dockerfile_app
image: mmrelayapp
container_name: mmrelay-app
user: '1000:1000'
volumes:
- mesh_volume:/home/mesh
- ./meshtastic-matrix-relay:/home/mesh/app
- ./config.yaml:/home/mesh/app/config.yaml
networks:
- mesh_net
networks:
mesh_net:
2023-08-21 12:52:16 +00:00
volumes:
mesh_volume:
2023-08-21 21:20:08 +00:00