Skip to content

Docker instructions

Running everything

  • Simply do docker compose up in the main folder (assuming you have docker installed)
  • After that you can curl any of the services you want
  • For information on the ports, please look at your .env file
  • eg: Website Accessibility (HTML file input)
1
2
3
4
5
6
7
8
curl -s -X POST "http://localhost:8001/automl_tabular/best_model/" \
  -H "Content-Type: multipart/form-data" \
  -F "user_id=1" \
  -F "dataset_id=2" \
  -F "target_column_name=signature" \
  -F "task_type=classification" \
  -F "time_stamp_column_name=" \
  -F "time_budget=30"

Pushing to repo

Login: echo {PASS} | docker login gitlab.catalink.eu:5050 -u {USER} --password-stdin Build & tag: docker build -t gitlab.catalink.eu:5050/external/alfie_eu/alfie/{MODULE}:{TAG} Push: docker push gitlab.catalink.eu:5050/external/alfie_eu/alfie/{MODULE}:{TAG}