Here a Docker Compose File to install Axxon One Server With Docker:
version: "3.4"
services:
axxon-one:
container_name: axxon-one
privileged: true
image: axxonsoft/axxon-one:2.0.0.150
volumes:
- $APPDATA_PATH/axxonone:/data
restart: 'unless-stopped'
cap_add:
- SYS_PTRACE
shm_size: 1G
ulimits:
nofile:
soft: 65536
hard: 65536
tty: true
stop_grace_period: 1m
stop_signal: SIGINT
environment:
- TZ=$TZ
- NGP_IFACE_WHITELIST=$NGP_IFACE_WHITELIST
- DATA_DIR=/data
network_mode: "host"
Variables:
APPDATA_PATH - Persistent data folder
TZ: Time Zone, like Europe/Paris
NGP_IFACE_WHITELIST: IP address that use docker host. Like: 192.168.1.10