I've been working with Docker Compose to put together a docker-compose.yml file to rapidly deploy a Maker container. Everything is working great with the exception of passing the third party modules during container creation.
Upon launching the Maker Gateway, the third party modules are stuck in quarantine, requiring install and signing. Is this expected behavior? What can I do differently, if anything? Although this is for dev, recommendations for an enterprise production environment are welcome. Here is my docker-compose.yml for reference:
services:
scada:
image: inductiveautomation/ignition:8.1.47
ports:
- 80:8088
- 443:8043
command:
-n scada
-a localhost
-h 80
-s 443
-m 3072
environment:
ACCEPT_IGNITION_EULA: Y
GATEWAY_ADMIN_USERNAME_FILE: /run/secrets/username
GATEWAY_ADMIN_PASSWORD_FILE: /run/secrets/password
TZ: US/Eastern
GATEWAY_MODULES_ENABLED: alarm-notification,opc-ua,perspective,reporting,sfc,sql-bridge,tag-historian,web-developer,udp-tcp-drivers,modbus-driver-v2
DISABLE_QUICKSTART: true
IGNITION_EDITION: maker
IGNITION_LICENSE_KEY_FILE: /run/secrets/license-key
IGNITION_ACTIVATION_TOKEN_FILE: /run/secrets/activation-token
IGNITION_UID: 2003
IGNITION_GID: 2003
user: "0:0"
volumes:
- scada-data:/usr/local/bin/ignition/data
- ./modules/MQTT-Distributor-signed.modl:/usr/local/bin/ignition/user-lib/modules/MQTT-Distributor-signed.modl
- ./modules/MQTT-Engine-signed.modl:/usr/local/bin/ignition/user-lib/modules/MQTT-Engine-signed.modl
- ./modules/MQTT-Transmission-signed.modl:/usr/local/bin/ignition/user-lib/modules/MQTT-Transmission-signed.modl
secrets:
- username
- password
- license-key
- activation-token
secrets:
username:
file: ./secrets/username
password:
file: ./secrets/password
license-key:
file: ./secrets/license-key
activation-token:
file: ./secrets/activation-token
volumes:
scada-data: