ShellNGN docker compose

From wiki karavi
Revision as of 09:44, 30 March 2025 by Karavi (talk | contribs) (Created page with "Shell NGN has an official PRO image in the hub, and it is maintained by the official team. Below is the docker-compose sample that you can alter if you want (ports, volume name, container, etc), or run it as it is. version: "3.5" services: shellngn: image: shellngn/pro network_mode: "bridge" container_name: shellngn ports: - "8080:8080" volumes: - shellngn-data:/home/node/server/data environment: - HOST=0.0.0.0...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Shell NGN has an official PRO image in the hub, and it is maintained by the official team.

Below is the docker-compose sample that you can alter if you want (ports, volume name, container, etc), or run it as it is.

version: "3.5"

services:
  shellngn:
    image: shellngn/pro
    network_mode: "bridge"
    container_name: shellngn
    ports:
      - "8080:8080"
    volumes:
      - shellngn-data:/home/node/server/data
    environment:
      - HOST=0.0.0.0
    restart: always
volumes:
  shellngn-data: