Last active
October 13, 2023 03:33
-
-
Save frostming/05f41d3e35bf798fd224bc23fc07fcd6 to your computer and use it in GitHub Desktop.
A Fly.io config file for OpenCat™ for Team that can be deployed directly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# fly.toml file generated for still-snowflake-6351 on 2023-03-30T09:53:40+08:00 | |
kill_signal = "SIGINT" | |
kill_timeout = 5 | |
primary_region = "sin" | |
processes = [] | |
[build] | |
image = "bayedev/opencatd" | |
[mount] | |
source = "opencat" | |
destination = "/opt/db" | |
[experimental] | |
auto_rollback = true | |
[[services]] | |
internal_port = 80 | |
protocol = "tcp" | |
[services.concurrency] | |
hard_limit = 25 | |
soft_limit = 20 | |
type = "connections" | |
[[services.ports]] | |
force_https = true | |
handlers = ["http"] | |
port = 80 | |
[[services.ports]] | |
handlers = ["tls", "http"] | |
port = 443 | |
[[services.tcp_checks]] | |
grace_period = "1s" | |
interval = "15s" | |
restart_limit = 0 | |
timeout = "2s" |
我到第7步出错,大概是image没找着,出错详细信息如下,请教如何解决?
==> Verifying app config
Validating /app/bin/myopencat/fly.toml
Platform: machines
✓ Configuration is valid
--> Verified app config
==> Building image
Remote builder fly-builder-wispy-hill-8025 ready
Error failed to fetch an image or build from source: app does not have a Dockerfile or buildpacks configured. See https://fly.io/docs/reference/configuration/#the-build-section
You may try flyctl doctor
and LOG_LEVEL=debug fly deploy
to help pinpoint the problem.
问题解决了,谢 谢 。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you for sharing the deployment configuration files and steps, it has been successfully launched. In step 6, by default, a persistent volume storage of 3GB is created, but in reality, it is not necessary to use so much, so I added the
--size 1
option to create a persistent volume of only 1GB. fly.io provides 3GB persistent volume storage (total) for free. I made this change to avoid exceeding the limit when deploying other apps.