No description
  • Dockerfile 83.7%
  • Shell 16.3%
Find a file
2024-11-09 23:10:58 +00:00
backgrounds Migrating to new fork of runalyze, include SRTM files and backgrounds with this 2022-03-10 10:02:31 +01:00
config PHP memory limit not enough for large tracks 2023-12-21 12:15:33 +00:00
scripts Startup script 2020-05-25 18:16:49 +02:00
srtm Migrating to new fork of runalyze, include SRTM files and backgrounds with this 2022-03-10 10:02:31 +01:00
.gitlab-ci.yml Adapt docker pipeline 2024-11-09 23:10:58 +00:00
Dockerfile debian -> bullseye, simpler CI pipeline 2023-12-21 11:51:39 +00:00
README.md Update README.md 2021-12-31 15:24:40 +00:00

Runalyze - Docker image

Functionality

The container provides the following functionality:

  • based on debian:buster mainly to freeze on PHP7.3
  • the main functionality is the hosting of Runalyze in Apache2/PHP7.3
  • requires a mariadb container
  • apt-get installs required dependencies for Runalyze, the Poster generation and localization (of Runalyze)

Running the container

Run with docker-compose

version: '3.5'

services:
  mariadb:
    image: lscr.io/linuxserver/mariadb
    container_name: mariadb
    hostname: mariadb
    restart: always

  runalyze:
    image: docker.tgradl.de/docker/runalyze:latest
    container_name: runalyze
    hostname: runalyze
    restart: always
    depends_on:
      - mariadb
    working_dir: /var/www/html
    entrypoint: /opt/scripts/run.sh