Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- services:
- netmaker:
- container_name: netmaker
- image: gravitl/netmaker:latest
- env_file: ./netmaker.env
- restart: always
- volumes:
- - dnsconfig:/root/config/dnsconfig
- - sqldata:/root/data
- environment:
- - STUN_LIST=stun1.netmaker.io:3478,stun2.netmaker.io:3478,stun1.l.google.com:19302,stun2.l.google.com:19302
- - BROKER_ENDPOINT=wss://broker.api.achllys.net
- - SERVER_NAME=api.achllys.net
- - SERVER_API_CONN_STRING=api.achllys.net:443
- - COREDNS_ADDR=api.achllys.net
- - SERVER_HTTP_HOST=api.achllys.net
- networks:
- - netmaker_network
- netmaker-ui:
- container_name: netmaker-ui
- image: gravitl/netmaker-ui:latest
- env_file: ./netmaker.env
- environment:
- BACKEND_URL: "https://api.achllys.net"
- depends_on:
- - netmaker
- restart: always
- networks:
- - netmaker_network
- mq:
- container_name: mq
- image: eclipse-mosquitto:2.0.15-openssl
- env_file: ./netmaker.env
- depends_on:
- - netmaker
- restart: unless-stopped
- command: [ "/mosquitto/config/wait.sh" ]
- volumes:
- - ./mosquitto.conf:/mosquitto/config/mosquitto.conf
- - ./wait.sh:/mosquitto/config/wait.sh
- - mosquitto_logs:/mosquitto/log
- - mosquitto_data:/mosquitto/data
- networks:
- - netmaker_network
- networks:
- netmaker_network:
- driver: bridge
- volumes:
- sqldata: {}
- dnsconfig: {}
- mosquitto_logs: {}
- mosquitto_data: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement