mirror of
https://github.com/singchia/frontier.git
synced 2025-12-24 13:27:50 +08:00
43 lines
1.0 KiB
YAML
43 lines
1.0 KiB
YAML
version: "3.7"
|
|
|
|
services:
|
|
frontier:
|
|
container_name: frontier
|
|
image: singchia/frontier:1.1.0
|
|
restart: always
|
|
command: --config /usr/conf/frontier.yaml -v 1
|
|
ports:
|
|
- 30010:30010
|
|
- 30011:30011
|
|
- 30012:30012
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 50m
|
|
max-file: "5"
|
|
frontlas:
|
|
container_name: frontlas
|
|
image: singchia/frontlas:1.1.0
|
|
restart: always
|
|
ports:
|
|
- 40011:40011
|
|
- 40012:40012
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: 50m
|
|
max-file: "5"
|
|
redis:
|
|
image: redis:6.2.6
|
|
restart: always
|
|
container_name: "redis"
|
|
command: redis-server
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '1'
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "50m"
|
|
max-file: "5" |