Dockerfile for running Pathfinder, the mapping tool for EVE Online.
- Clone
docker-compose.yml
file (wget https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/master/docker-compose.yml
) - Clone the example
.env
file (wget https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/master/.env
) - Fill out the
.env
file and start up your instance withdocker-compose up -d
You may need to create the databases for your MYSQL image if using a fresh compose.
sudo docker-compose exec db /bin/bash
mysql -uroot -p
CREATE DATABASE pathfinder;
CREATE DATABASE eve_universe;
- Navigate to your Pathfinder page, go through setup.
- Create the databases using the database controls in the setup page.
- Import static database.
- Import from ESI at the Cronjob section of the setup page.
- Build Systems data index under
Build search index
in the Administration section of the setup page. - Restart your container with
SETUP=False
. - You're live!
wget https://github.com/exodus4d/pathfinder/raw/master/export/sql/eve_universe.sql.zip
unzip eve_universe.sql.zip
sudo docker cp eve_universe.sql "$(sudo docker-compose ps | grep db | awk '{ print $1}'):/eve_universe.sql"
sudo docker-compose exec db sh -c 'exec mysql -uroot -p"$MYSQL_ROOT_PASSWORD" eve_universe < /eve_universe.sql'
- Optional
rm eve_universe.sql*
- Complete Setup.
Feel free to contribute, there are many improvements that still need to be made.