Skip to content
  • mevenson@1c010e3e-69d0-11dd-93a8-456734b0d56f's avatar
    Dockerification of ABCL for fun and profit · d869d415
    With Docker Enginer installed, one may now run a version of ABCL
    within a Linux container via
    
        docker run --name abcl --tty abcl easye/abcl
    
    Once the initial container 'abcl' is running, addiitonal ABCL
    processes may be invoked as follows.
    
        docker exec -it abcl /home/abcl/work/abcl/abcl
    
    The Docker images downloaded from the network by Docker Engine can be rebuilt locally
    if something in the ABCL sources changes via:
    
        docker build .
    d869d415