ianseo-docker

Run i@nseo software for managing archery tournaments results in docker


Get I@nseo running in Ubuntu with Docker in one-liner!

asciicast

Install docker

sudo apt install docker.io -y

Launch database

docker run -d --name ianseodb -e MARIADB_USER=ianseo \
  -e MARIADB_DATABASE=ianseo -e MARIADB_PASSWORD=ianseo \
  -e MARIADB_ROOT_PASSWORD=ianseo mariadb:10

Launch ianseo

docker run -d --name ianseo --link ianseodb:mysql \
  -p 8080:80 arqueria/ianseo

Browse to http://localhost:8080