24 lines
530 B
YAML
24 lines
530 B
YAML
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
environments:
|
|
- name: APP_NAME
|
|
value: actix-test
|
|
- name: PORT
|
|
value: 8080
|
|
# - name: STATIC_DIR
|
|
# value: "/static/html_doc"
|
|
child_processes:
|
|
- path: /bin/actix-static-server
|
|
arguments: []
|
|
restart:
|
|
max_retries: 2
|
|
delay_seconds: 2
|
|
policy: !OnNonZeroExit true
|
|
filesystems:
|
|
- path: /host
|
|
content: !path "./src"
|
|
- path: /host
|
|
content: !path "./samples"
|
|
# - path: /static
|
|
# content: !path "./html_doc" |