├── .env ├── .github └── workflows │ └── CIActions.yml ├── .gitignore ├── Dockerfile ├── README.md ├── config ├── composer.json ├── default ├── default_crontab ├── eve_universe.sql ├── pathfinder-websocket ├── php.ini ├── redis.conf ├── start.sql └── www.conf ├── docker-compose.yml └── entrypoint.sh /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/.env -------------------------------------------------------------------------------- /.github/workflows/CIActions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/.github/workflows/CIActions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/README.md -------------------------------------------------------------------------------- /config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/composer.json -------------------------------------------------------------------------------- /config/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/default -------------------------------------------------------------------------------- /config/default_crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/default_crontab -------------------------------------------------------------------------------- /config/eve_universe.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/eve_universe.sql -------------------------------------------------------------------------------- /config/pathfinder-websocket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/pathfinder-websocket -------------------------------------------------------------------------------- /config/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/php.ini -------------------------------------------------------------------------------- /config/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/redis.conf -------------------------------------------------------------------------------- /config/start.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/start.sql -------------------------------------------------------------------------------- /config/www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/config/www.conf -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptedGaming/pathfinder-docker/HEAD/entrypoint.sh --------------------------------------------------------------------------------