ormio 0.1.0

Working in progress
Documentation
version: '3.4'

networks:
    core:
  
volumes:
    rustp:
        driver: local

services:
    rustp:
        build: ${PROJECT_PATH:-.}
        container_name: rustp
        stdin_open: true
        tty: true
        container_name: rustp
        hostname: rustp
        volumes:
            - ${PROJECT_PATH:-.}:/app/
        networks:
            - core
        ports:
            - "80:80"
            - "5678:5678"
        command: /bin/bash

# Execute: docker-compose up -d