bumps version and updates development files

This commit is contained in:
Sam ONeill 2024-01-07 00:02:30 +13:00
parent ba6b645711
commit 4c34d19ff6
3 changed files with 23 additions and 12 deletions

View file

@ -13,7 +13,7 @@ NAME = Pathfinder Community Edition
; Version is used for CSS/JS cache busting and is part of the URL for static resources: ; Version is used for CSS/JS cache busting and is part of the URL for static resources:
; e.g. public/js/vX.X.X/app.js ; e.g. public/js/vX.X.X/app.js
; Syntax: String (current version) ; Syntax: String (current version)
; Default: v2.2.2 ; Default: v2.2.3
VERSION = v2.2.3 VERSION = v2.2.3
; Contact information [optional] ; Contact information [optional]

View file

@ -1,4 +1,4 @@
version: "3.8" version: "3.9"
services: services:
pfdb: pfdb:
@ -12,13 +12,17 @@ services:
volumes: volumes:
- db_data:/var/lib/mysql - db_data:/var/lib/mysql
- ./pathfinder/export/sql/eve_universe.sql.zip:/eve_universe.sql.zip - ./pathfinder/export/sql/eve_universe.sql.zip:/eve_universe.sql.zip
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: always restart: always
pf-redis: pf-redis:
image: redis:6.2.5-alpine3.14 image: redis:6.2.5-alpine3.14
command: ["redis-server", "--appendonly", "yes"] command: ["redis-server", "--appendonly", "yes"]
hostname: redis container_name: redis
volumes: volumes:
- redis_data:/data - redis_data:/data
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks: networks:
pf: pf:
aliases: aliases:
@ -29,14 +33,18 @@ services:
pf-socket: pf-socket:
image: ghcr.io/goryn-clade/pf-websocket:latest image: ghcr.io/goryn-clade/pf-websocket:latest
command: ["--tcpHost", "0.0.0.0"] command: ["--tcpHost", "0.0.0.0"]
hostname: socket container_name: socket
networks: networks:
pf: pf:
aliases: aliases:
- "$PATHFINDER_SOCKET_HOST" - "$PATHFINDER_SOCKET_HOST"
volumes:
- ./logs:/var/www/html/pathfinder/history/map
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
restart: always restart: always
pf: pf:
hostname: "pathfinder" container_name: pathfinder
build: build:
context: '.' context: '.'
dockerfile: pathfinder.Dockerfile dockerfile: pathfinder.Dockerfile
@ -63,14 +71,16 @@ services:
- ./config/pathfinder/pathfinder.ini:/var/www/html/pathfinder/app/pathfinder.ini - ./config/pathfinder/pathfinder.ini:/var/www/html/pathfinder/app/pathfinder.ini
- ./config/pathfinder/plugin.ini:/var/www/html/pathfinder/app/plugin.ini - ./config/pathfinder/plugin.ini:/var/www/html/pathfinder/app/plugin.ini
- ./logs:/var/www/html/pathfinder/history/map - ./logs:/var/www/html/pathfinder/history/map
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
depends_on: depends_on:
- pfdb - pfdb
- pf-redis - pf-redis
- pf-socket - pf-socket
restart: always restart: always
traefik: traefik:
image: "traefik:v2.3" image: traefik:v2.3
container_name: "traefik" container_name: traefik
command: command:
- "--log.level=ERROR" - "--log.level=ERROR"
- "--api.insecure=true" - "--api.insecure=true"
@ -84,12 +94,13 @@ services:
- "8080:8080" - "8080:8080"
volumes: volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro" - "/var/run/docker.sock:/var/run/docker.sock:ro"
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks: networks:
- web - web
restart: always restart: always
volumes: volumes:
data:
db_data: db_data:
redis_data: redis_data:
networks: networks:

View file

@ -1,4 +1,4 @@
FROM php:7.2.11-fpm-alpine3.7 as build FROM php:7.2.34-fpm-alpine3.12 as build
RUN apk update \ RUN apk update \
&& apk add --no-cache libpng-dev zeromq-dev git \ && apk add --no-cache libpng-dev zeromq-dev git \