Xboard/compose.sample.yaml

33 lines
709 B
YAML
Raw Normal View History

services:
2025-01-06 12:20:11 -05:00
web:
build: .
volumes:
- ./:/www/
2025-01-06 12:20:11 -05:00
- redis-socket:/run/redis-socket
environment:
2025-01-06 12:20:11 -05:00
- docker=true
depends_on:
- redis
network_mode: host
command: php artisan octane:start --server="swoole" --port=8000
restart: on-failure
horizon:
build: .
volumes:
2025-01-06 12:58:53 -05:00
- ./:/www/
2025-01-06 12:20:11 -05:00
- redis-socket:/run/redis-socket
restart: on-failure
network_mode: host
command: php artisan horizon
depends_on:
- redis
redis:
2025-01-06 12:20:11 -05:00
build:
context: .docker/services/redis
2025-01-06 12:20:11 -05:00
restart: on-failure
volumes:
- ./.docker/.data/redis:/data/ # 挂载redis持久化数据
2025-01-06 12:20:11 -05:00
- redis-socket:/run/redis-socket
volumes:
2025-01-06 12:20:11 -05:00
redis-socket: