You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

docker-compose.yml 299B

1234567891011121314151617
  1. version: '3'
  2. services:
  3. www:
  4. volumes:
  5. - /opt/app/server-data:/opt/app/server-data
  6. ports:
  7. - '80:80'
  8. build:
  9. context: .
  10. restart: on-failure
  11. deploy:
  12. restart_policy:
  13. condition: on-failure
  14. delay: 5s
  15. max_attempts: 5
  16. window: 60s