Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/insuusvenerati/docker-pyfa
Run Pyfa(Python fitting Assistant) from a docker container on any system with X11
https://github.com/insuusvenerati/docker-pyfa
docker eveonline games pyfa
Last synced: about 1 month ago
JSON representation
Run Pyfa(Python fitting Assistant) from a docker container on any system with X11
- Host: GitHub
- URL: https://github.com/insuusvenerati/docker-pyfa
- Owner: insuusvenerati
- Created: 2021-04-06T19:26:54.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-12T04:43:15.000Z (about 2 years ago)
- Last Synced: 2023-03-02T00:06:36.741Z (almost 2 years ago)
- Topics: docker, eveonline, games, pyfa
- Language: Dockerfile
- Homepage:
- Size: 687 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.MD
Awesome Lists containing this project
README
# Pyfa in Docker
Run Pyfa(Python fitting Assistant) from a docker container on any system with X11
- [Pyfa in Docker](#pyfa-in-docker)
- [Get started](#get-started)
- [Install necessary dependencies](#install-necessary-dependencies)
- [Get Docker](#get-docker)
- [Clone the repo and Build the image](#clone-the-repo-and-build-the-image)
- [Bootstrap the pyfa container](#bootstrap-the-pyfa-container)
- [Launch Pyfa](#launch-pyfa)
- [Known issues](#known-issues)## Get started
> Examples are for Ubuntu 20.04
### Install necessary dependencies
#### Get Docker
```bash
curl -fsSL https://get.docker.com | sudo sh
```### Clone the repo and Build the image
```bash
git clone insuusvenerati/docker-pyfa
docker build -t pyfa .
```or pull and tag my image
```bash
docker pull stiforr/pyfa
docker tag stiforr/pyfa pyfa
```### Bootstrap the pyfa container
```bash
./scripts/create-container
```> This will create a container named pyfa and leave it running until you exit but will not remove the container.
### Launch Pyfa
```bash
sudo cp scripts/pyfa /usr/local/bin/pyfa
pyfa
```### Known issues
- There is a warning about not being able to set locale.
- This thing eats up a ton of space because it's building from source. Any suggestions on optimization are appreciated.