mirror of
https://github.com/lovasoa/whitebophir
synced 2024-11-10 06:24:17 +00:00
38e81921e2
* Add prettier formatting feature and also add it as a job in CI.yml file * Update CI.yml file * Add format job to CI.yml file * Fix formatting issues in CI workflow file
16 lines
298 B
YAML
16 lines
298 B
YAML
version: "3"
|
|
services:
|
|
www:
|
|
volumes:
|
|
- /opt/app/server-data:/opt/app/server-data
|
|
ports:
|
|
- "80:80"
|
|
build:
|
|
context: .
|
|
restart: on-failure
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
delay: 5s
|
|
max_attempts: 5
|
|
window: 60s
|