Jump to content

How to install Axxon One Server with Docker Compose (Linux)


vamp

Recommended Posts

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 

 

Edited by vamp
  • Like 2
Link to comment
Share on other sites

  • vamp changed the title to How to install Axxon One Server with Docker Compose (Linux)

Join the conversation

If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...