You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

In this tutorial we will write and run example ACS modules in Python, Java and C++ inside a Docker container based in a CentOS 7 image, in an Ubuntu 20.04 machine.

Clone repository

sudo apt update
sudo apt install git-lfs
git clone https://bitbucket.alma.cl/scm/asw/acs.git


Configurations

  1. Install SELinux

    sudo apt install policycoreutils selinux-utils selinux-basics
    sudo selinux-activate
    sudo selinux-config-enforcing
  2. Edit docker .env file (you can use your favourite editor)

    cd Virtualization/Docker/Dev/
    sudo nano .env
    
    USER_NAME=<my_user>
    GROUP_NAME=<my_group>
    USER_ID=1000
    GROUP_ID=1000
    ALMA_DIR=/external/docker/alma
    HOME_DIR=/external/docker/home
    REPO_DIR=/absolute/path/to/cloned/repo
    IMAGE_OS=centos7
    CONTAINER_DIR=centos7

Run container

Install ACS

  • No labels