index : license-api-rs.git

ascending towards madness

version: '3'
services:
  lapi:
    image: lapi:latest
    volumes:
      - /path/to/license_db:/config
    environment:
      - LICENSE_API_DATABASE="/config/database.yml" # required
      - LICENSE_API_BASE_URL="/" # optional
      - LICENSE_API_SERVER_IP="0.0.0.0" # optional
      - LICENSE_API_SERVER_PORT="8080" # optional
      - LICENSE_API_WELCOME_MESSAGE="/path/to/welcome.txt" # optional
    ports:
      - 3535:8080
    restart: unless-stopped