version: "3.4" services: nginx: image: nginx restart: unless-stopped volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf:ro # Override nginx-config to add stream-import - ./nginx/conf/conf.d/:/etc/nginx/conf.d:ro # conf.d - ./nginx/conf/stream.d/:/etc/nginx/stream.d:ro # conf.d - ./certs:/certs:ro # SSL-certificates ports: - {{ netmaker_nginx.tls_port }}:443 rqlite: # Distributed sqlite-db image: rqlite/rqlite restart: unless-stopped hostname: "{{ ansible_facts.nodename }}" volumes: - "./rqlite/data:/rqlite/file" - "./rqlite/config.json:/config.json:ro" - "./certs:/certs:ro" - ./certs/ca.crt:/etc/ssl/certs/netmaker-ca.pem:ro # Add CA to system-trust-store command: " -http-adv-addr {{ netmaker_rqlite.http_host }}.{{ ansible_facts.nodename }}:{{ netmaker_nginx.advertise_port }} -raft-addr [::]:4002 -raft-adv-addr {{ netmaker_rqlite.cluster_host }}.{{ ansible_facts.nodename }}:{{ netmaker_nginx.advertise_port }} -node-encrypt -node-cert /certs/node.crt -node-key /certs/node.key -node-no-verify -auth /config.json {% if inventory_hostname != groups['netmaker'][0] %} -join-as netmaker -join https://{{ netmaker_rqlite.http_host }}.{{ groups['netmaker'][0] }}:{{ netmaker_nginx.advertise_port }} {% endif %} " # FIXME: /\ \/ Change http -> https netmaker: # The Primary Server for running Netmaker image: gravitl/netmaker:v0.16.1 depends_on: - rqlite cap_add: - NET_ADMIN - NET_RAW - SYS_MODULE sysctls: - net.ipv4.ip_forward=1 - net.ipv4.conf.all.src_valid_mark=1 - net.ipv6.conf.all.disable_ipv6=0 - net.ipv6.conf.all.forwarding=1 restart: unless-stopped volumes: # Volume mounts necessary for sql, coredns, and mqtt - ./dnsconfig/:/root/config/dnsconfig - ./mosquitto/data/:/etc/netmaker/ - ./certs/ca.crt:/etc/ssl/certs/netmaker-ca.pem:ro # Add CA to system-trust-store hostname: "{{ ansible_facts.nodename }}" environment: # Necessary capabilities to set iptables when running in container NODE_ID: "{{ ansible_facts.nodename }}" MASTER_KEY: "{{ netmaker_creds.master_key }}" # The admin master key for accessing the API. Change this in any production installation. {% if not private_ipv4_address and not netmaker_dynamicIp %} SERVER_HOST: "{{ ansible_facts.default_ipv4.address }}" # Set to public IP of machine. {% endif %} SERVER_NAME: "{{ netmaker_broker.tls_host }}.{{ netmaker_base_domain }}" # The domain/host IP indicating the mq broker address SERVER_HTTP_HOST: "{{ netmaker_api.host }}.{{ netmaker_base_domain }}" # Overrides SERVER_HOST if set. Useful for making HTTP available via different interfaces/networks. SERVER_API_CONN_STRING: "{{ netmaker_api.host }}.{{ netmaker_base_domain }}:{{ netmaker_nginx.advertise_port }}" DISABLE_REMOTE_IP_CHECK: "off" # If turned "on", Server will not set Host based on remote IP check. This is already overridden if SERVER_HOST is set. Turned "off" by default. DNS_MODE: "off" # Enables DNS Mode, meaning all nodes will set hosts file for private dns settings. API_PORT: "8081" # The HTTP API port for Netmaker. Used for API calls / communication from front end. If changed, need to change port of BACKEND_URL for netmaker-ui. REST_BACKEND: "on" # Enables the REST backend (API running on API_PORT at SERVER_HTTP_HOST). Change to "off" to turn off. RCE: "off" # Enables setting PostUp and PostDown (arbitrary commands) on nodes from the server. Off by default. CORS_ALLOWED_ORIGIN: "*" # The "allowed origin" for API requests. Change to restrict where API requests can come from. DISPLAY_KEYS: "on" # Show keys permanently in UI (until deleted) as opposed to 1-time display. DATABASE: "rqlite" SQL_CONN: "https://netmaker:{{ netmaker_creds.rqlite_password }}@{{ netmaker_rqlite.http_host }}.{{ ansible_facts.nodename }}:{{ netmaker_nginx.advertise_port }}/" MQ_HOST: "mosquitto" # the address of the mq server. If running from docker compose it will be "mq". Otherwise, need to input address. If using "host networking", it will find and detect the IP of the mq container. MQ_SERVER_PORT: "1883" # the reachable port of MQ by the server - change if internal MQ port changes (or use external port if MQ is not on the same machine) MQ_PORT: "{{ netmaker_nginx.advertise_port }}" # the reachable port of MQ - change if external MQ port changes (port on proxy, not necessarily the one exposed in docker-compose) MQ_ADMIN_PASSWORD: "{{ netmaker_creds.mq_admin_password }}" HOST_NETWORK: "off" # whether or not host networking is turned on. Only turn on if configured for host networking (see docker-compose.hostnetwork.yml). Will set host-level settings like iptables. PORT_FORWARD_SERVICES: "" # decide which services to port forward ("dns","ssh", or "mq") # this section is for OAuth AUTH_PROVIDER: "" # "" CLIENT_ID: "" # "" CLIENT_SECRET: "" # "" FRONTEND_URL: "" # "https://dashboard." AZURE_TENANT: "" # "" OIDC_ISSUER: "" # https://oidc.yourprovider.com - URL of oidc provider VERBOSITY: "1" # logging verbosity level - 1, 2, or 3 TELEMETRY: "off" # Whether or not to send telemetry data to help improve Netmaker. Switch to "off" to opt out of sending telemetry. ports: - "51821-51830:51821-51830/udp" # wireguard ports netmaker-ui: # The Netmaker UI Component image: gravitl/netmaker-ui:v0.16.1 depends_on: - netmaker links: - "netmaker:api" restart: unless-stopped environment: BACKEND_URL: "https://{{ netmaker_api.host }}.{{ netmaker_base_domain }}:{{ netmaker_nginx.advertise_port }}" # URL where UI will send API requests. Change based on SERVER_HOST, SERVER_HTTP_HOST, and API_PORT mosquitto: # the MQTT broker for netmaker image: eclipse-mosquitto:2.0.11-openssl restart: unless-stopped volumes: - ./mosquitto/config:/mosquitto/config - ./mosquitto/data:/mosquitto/data - ./mosquitto/logs:/mosquitto/log - "./certs:/certs:ro" depends_on: - netmaker command: ["/mosquitto/config/wait.sh"] environment: NETMAKER_SERVER_HOST: "http://netmaker:8081"