Alphaus | Documentation
WebsiteRepoTech blog (JP)Tech blog (EN)
ALM v2.0
ALM v2.0
  • Mobingi Documentation (v2.0)
  • Getting started
  • Guides and tutorials
    • Stack lifecycle
      • Deploy stack
      • Manage stack
    • Docker
      • Custom Docker containers
    • Others
      • Blue-green deployment
      • How to use RDS
      • Environment variables
      • Custom installation script
      • SSH into your container
    • FAQ
  • API Reference
    • Overview
    • Stacks
      • List stacks
      • Create stack
      • Describe stack
      • Update stack
      • Delete stack
      • Deploy code
      • Put lifecycle hook
      • Get lifecycle hook
      • Restart instance
      • Describe ServiceConfig
      • Update ServerConfig
    • Vendor credentials
      • List credentials
      • Save credentials
      • Delete credentials
Powered by GitBook
On this page

Was this helpful?

  1. Guides and tutorials
  2. Others

Custom installation script

PreviousEnvironment variablesNextSSH into your container

Last updated 6 years ago

Was this helpful?

When Mobingi installs a container, it performs a series of steps to start up a webserver. During these steps you can insert your code in the form of a bash shell script to perform the installation and configuration you need.

Simply add a mobingi-init.sh file to the root directory of your code and the container will run the instructions in the script to perform the additional setup required by your webserver.

Example Script: Below is a sample script for a project coded in PHP and requires Composer, this script will automatically setup the environment.

sudo apt-get update
sudo apt-get -y install curl
sudo su
curl -sS https://getcomposer.org/installer | php
php composer.phar install

And you are able to view the logs through application's details page, click on the Logs tab, and select on the instance id, then choose moDaemon or Startup from the drop down menu to view service logs.