Xboard/compose.yaml

43 lines
1.0 KiB
YAML
Raw Normal View History

2025-01-07 00:06:38 -05:00
services:
web:
2025-01-07 00:08:09 -05:00
image: ghcr.io/cedar2025/xboard:new
2025-01-07 00:06:38 -05:00
volumes:
2025-01-07 00:14:16 -05:00
- type: bind
source: ${PWD}/.env
target: /www/.env
2025-01-07 00:50:57 -05:00
- ./.docker/.data/:/www/.docker/.data
2025-01-07 00:06:38 -05:00
environment:
- docker=true
depends_on:
- redis
# network_mode: host
2025-01-07 00:50:57 -05:00
command: php artisan octane:start --server="swoole" --port=7001 --host=0.0.0.0
2025-01-07 00:06:38 -05:00
restart: on-failure
ports:
- 7001:7001
horizon:
2025-01-07 00:08:09 -05:00
image: ghcr.io/cedar2025/xboard:new
2025-01-07 00:06:38 -05:00
volumes:
2025-01-07 00:14:16 -05:00
- type: bind
source: ${PWD}/.env
target: /www/.env
2025-01-07 00:50:57 -05:00
- ./.docker/.data/:/www/.docker/.data
2025-01-07 00:06:38 -05:00
restart: on-failure
# network_mode: host
command: php artisan horizon
depends_on:
- redis
redis:
image: redis:7-alpine
command: redis-server --appendonly yes --appendfsync everysec
restart: unless-stopped
volumes:
2025-01-07 00:50:57 -05:00
- ./.docker/.data/:/www/.docker/.data
2025-01-07 00:06:38 -05:00
sysctls:
net.core.somaxconn: 1024
ulimits:
nproc: 65535
nofile:
soft: 20000
hard: 40000