version: '3.8'

services:
  msrewards:
    build:
      context: .
      dockerfile: Dockerfile
      # optional if you have Dockerfile in the same directory
      # arguments:
      #   - ARG_NAME=value  # If you have build arguments
    image: msrewards
    container_name: MsRewards
    restart: unless-stopped
    ports:
      - "1234:1234"
      - "2345:2345"
    shm_size: 2gb
    volumes:
      - "./data/:/data"