|
| 1 | +services: |
| 2 | + |
| 3 | + caddy: |
| 4 | + image: caddy:2 |
| 5 | + ports: |
| 6 | + - 80:80 |
| 7 | + environment: |
| 8 | + - LILA_DOMAIN=${LILA_DOMAIN:-localhost} |
| 9 | + - LILA_URL=${LILA_URL:-http://localhost} |
| 10 | + volumes: |
| 11 | + - ./conf/Caddyfile:/etc/caddy/Caddyfile |
| 12 | + |
| 13 | + lila: |
| 14 | + image: ghcr.io/lichess-org/lila-server:latest |
| 15 | + environment: |
| 16 | + - LILA_DOMAIN=${LILA_DOMAIN:-localhost} |
| 17 | + - LILA_URL=${LILA_URL:-http://localhost} |
| 18 | + volumes: |
| 19 | + - ./conf/lila.conf:/lila/conf/application.conf |
| 20 | + - lila-assets-data:/lila/public |
| 21 | + |
| 22 | + lila_assets: |
| 23 | + image: ghcr.io/lichess-org/lila-assets:latest |
| 24 | + volumes: |
| 25 | + - lila-assets-data:/usr/share/nginx/html/public |
| 26 | + |
| 27 | + lila_ws: |
| 28 | + image: ghcr.io/lichess-org/lila-ws:latest |
| 29 | + environment: |
| 30 | + - CONFIG_FORCE_csrf.origin=${LILA_URL:-http://localhost} |
| 31 | + - CONFIG_FORCE_mongo_uri=mongodb://mongodb:27017/lichess?appName=lila-ws |
| 32 | + - CONFIG_FORCE_redis.uri=redis://redis |
| 33 | + |
| 34 | + mongodb: |
| 35 | + image: mongo:8.2-noble |
| 36 | + |
| 37 | + redis: |
| 38 | + image: redis:8 |
| 39 | + |
| 40 | + lila_fishnet: |
| 41 | + image: ghcr.io/lichess-org/lila-fishnet:latest |
| 42 | + environment: |
| 43 | + - REDIS_HOST=redis |
| 44 | + # - HTTP_API_LOGGER=true |
| 45 | + |
| 46 | + fishnet_play: |
| 47 | + image: niklasf/fishnet:master |
| 48 | + environment: |
| 49 | + - ENDPOINT=http://lila_fishnet:9665/fishnet |
| 50 | + - MAX_BACKOFF=5 |
| 51 | + - STATS_FILE=/stats.json |
| 52 | + |
| 53 | + fishnet_analysis: |
| 54 | + image: niklasf/fishnet:master |
| 55 | + environment: |
| 56 | + - ENDPOINT=http://lila:9663/fishnet |
| 57 | + - MAX_BACKOFF=5 |
| 58 | + - STATS_FILE=/stats.json |
| 59 | + |
| 60 | + lila_gif: |
| 61 | + image: ghcr.io/lichess-org/lila-gif:latest |
| 62 | + entrypoint: /usr/local/bin/lila-gif --bind 0.0.0.0:6175 |
| 63 | + |
| 64 | + lila_db_seed: |
| 65 | + image: ghcr.io/lichess-org/lila-db-seed:latest |
| 66 | + |
| 67 | + picfit: |
| 68 | + image: thoas/picfit:0.16.1 |
| 69 | + environment: |
| 70 | + - PICFIT_CONFIG_PATH=/mnt/config.json |
| 71 | + volumes: |
| 72 | + - ./conf/picfit.json:/mnt/config.json |
| 73 | + |
| 74 | + mailpit: |
| 75 | + image: axllent/mailpit:latest |
| 76 | + environment: |
| 77 | + - MP_WEBROOT=mailpit |
| 78 | + |
| 79 | +volumes: |
| 80 | + lila-assets-data: |
| 81 | + |
| 82 | +networks: |
| 83 | + default: |
| 84 | + driver: bridge |
0 commit comments