Skip to content

Latest commit

 

History

History
37 lines (34 loc) · 1.13 KB

File metadata and controls

37 lines (34 loc) · 1.13 KB

Dockerized rep2

  • PHP 8.5 (JIT有効)
  • Alpine Linux 3.23
  • Composer 2.9 (composer.json)
  • proxy2ch Version 20260306 snapshot
  • 2chproxy.plの削除
  • Alpine Linux 3.20以降パッケージが無くなったH2Oをビルド

docker-compose.yml

services:
  rep2:
    image: ebith/rep2:latest
    container_name: rep2
    restart: unless-stopped
    volumes:
      - $PWD:/ext
    ports:
      - '10090:80'
    environment:
      PX2C_ACCEPT_CONNECT: 1
      PX2C_FORCE_HTTPS: 1
      PX2C_MANAGE_BBSCGI_COOKIES: 1
      PX2C_BBSCGI_FIX_TIMESTAMP: 1
      PX2C_BBSCGI_CONFIRMATION: skip
      PX2C_KEYSTORE: keystore.json

開発メモ

docker buildx build --platform linux/amd64,linux/arm64 -t rep2 . --load
docker save rep2:latest -o rep2.tar --platform=linux/arm64
docker load -i rep2.tar