UAlbany's Arclight instance
An instance of https://github.com/sul-dlss/arclight
Run the app:
docker-compose -f docker-compose-dev.yml up
Navigate to http://localhost:3000/description
You should be able to edit code in real time.
When you're done:
docker-compose down
First build the arclight
image locally:
DOCKER_BUILDKIT=1 docker build --secret id=master_key,src=config/master.key -t arclight .
On Windows
$env:DOCKER_BUILDKIT=1; docker build --secret id=master_key,src=config/master.key -t arclight .
Running the image:
docker-compose up -d
Navigate to http://localhost:8080/description
→ In production, this should be set up to run as a service.
To stop:
docker-compose down
If you need another terminal:
docker exec -it arclight bash