Add .dockerignore and update Fly.io configuration
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

- Created `.dockerignore` to exclude irrelevant files during Docker image build.
- Enhanced `fly.toml` with additional configuration such as VM specs and adjusted syntax.
- Fixed logo path in `index.html` and relocated the logo file for proper referencing.
This commit is contained in:
2025-07-15 21:20:55 +02:00
parent 23b47a7e85
commit 7d5e77df76
4 changed files with 33 additions and 13 deletions

10
.dockerignore Normal file
View File

@ -0,0 +1,10 @@
# flyctl launch added from .idea\.gitignore
# Default ignored files
.idea\shelf
.idea\workspace.xml
# Editor-based HTTP Client requests
.idea\httpRequests
# Datasource local storage ignored files
.idea\dataSources
.idea\dataSources.local.xml
fly.toml

View File

@ -1,23 +1,33 @@
app = "gallus-pub"
primary_region = "fra"
# fly.toml app configuration file generated for gallus-pub on 2025-07-15T21:18:19+02:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'gallus-pub'
primary_region = 'fra'
[experimental]
auto_rollback = true
[build]
dockerfile = "Dockerfile" # Da du mit einem Dockerfile arbeitest
dockerfile = 'Dockerfile'
[http_service]
internal_port = 80
force_https = true
auto_stop_machines = true
auto_stop_machines = 'stop'
auto_start_machines = true
min_machines_running = 0
processes = ["app"]
processes = ['app']
[[http_service.checks]]
interval = "10s"
timeout = "2s"
grace_period = "5s"
method = "GET"
path = "/"
interval = '10s'
timeout = '2s'
grace_period = '5s'
method = 'GET'
path = '/'
[experimental]
auto_rollback = true
[[vm]]
memory = '1gb'
cpu_kind = 'shared'
cpus = 1

View File

@ -10,7 +10,7 @@
<body>
<div class="container">
<div class="logo-container">
<img src="../public/Logo.png" alt="Gallus Pub Logo">
<img src="public/Logo.png" alt="Gallus Pub Logo">
</div>
<h1 class="coming-soon">Coming Soon</h1>

View File

Before

Width:  |  Height:  |  Size: 110 KiB

After

Width:  |  Height:  |  Size: 110 KiB