Sign inSign up

tynesolutions/airnotifier

By tynesolutions

Updated over 3 years ago

Image
0

1.6K

tynesolutions/airnotifier repository overview

AirNotifier is a user friendly yet powerful application server for sending real-time notifications to mobile and desktop applications. AirNotifier provides a unified web service interface to deliver messages to multiple devices using multiple protocols, it also features a web based administrator UI to configure and manage services.

This image was built from the AirNotifier codebase on Github.

See below for an example docker-compose configuration:

version: "3"
services:
  mongodb:
    container_name: mongodb
    image: mongo:latest
    ports:
      - 27017:27017
    environment:
      - MONGO_DATA_DIR=/data/db
      - MONGO_LOG_DIR=/tmp/mongo/mongo.log
    volumes:
      - ./mongo/data:/data/db
      - ./mongo/log:/tmp/mongo
    command: mongod --logpath=/dev/null # --quiet
  airnotifier:
    container_name: airnotifier
    image: tynesolutions/airnotifier:2
    links:
      - mongodb
    depends_on:
      - mongodb
    volumes:
      - ./certs:/var/airnotifier/pemdir
      - ./logs:/var/log/airnotifier
    ports:
      - 8801:8801
    environment:
      - MONGO_SERVER=mongodb
      - MONGO_PORT=27017

Tag summary

Content type

Image

Digest

sha256:b5f078a29

Size

407.2 MB

Last updated

over 3 years ago

docker pull tynesolutions/airnotifier