Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
title.env
linenumberstrue
collapsetrue
USER_NAME=<my_user>
GROUP_NAME=<my_user>
USER_ID=1000
GROUP_ID=1000
ALMA_DIR=/ACS/docker/alma
HOME_DIR=/ACS/docker/home
REPO_DIR=/absolute/path/to/ACS/repository
IMAGE_OS=stream8
CONTAINER_DIR=stream8

Run and open the container

Code Block
languagebash
# Create directories
sudo mkdir -p /ACS/docker/alma /ACS/docker/home

# Set ownership for directories
sudo chown -R $USER:$USER /ACS

# Run container
cd .../Virtualization/Docker/Dev
docker compose run -d --name acs_stream8 stream8

Set /etc/hosts file

Code Block
languagebash
# Add the following line to /etc/hosts to prevent networking issues
127.0.1.1	acs


Install external products

...

Code Block
languagebash
# Install external products
docker exec -it acs_stream8 bash
source /repo/LGPL/acsBUILD/config/.acs/.bash_profile.acs
cd /repo/ExtProd/INSTALL
make all

Build

...

ACS

Warning

This step must be executed inside a new container terminal.

...