This commit is contained in:
Atridad Lahiji 2024-11-16 22:25:36 -07:00
parent d0b5f9afd6
commit 6b6bef943a
Signed by: atridad
SSH key fingerprint: SHA256:LGomp8Opq0jz+7kbwNcdfTcuaLRb5Nh0k5AchDDb438
5 changed files with 26 additions and 81 deletions

26
compose/docuseal.yml Normal file
View file

@ -0,0 +1,26 @@
services:
app:
depends_on:
postgres:
condition: service_healthy
image: docuseal/docuseal:latest
ports:
- 3069:3000
volumes:
- ./docuseal:/data/docuseal
environment:
- DATABASE_URL=postgresql://postgres:postgres@postgres:5432/docuseal
postgres:
image: postgres:15
volumes:
- './pg_data:/var/lib/postgresql/data'
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: docuseal
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5

BIN
fly/.DS_Store vendored

Binary file not shown.

BIN
fly/gitea/.DS_Store vendored

Binary file not shown.

View file

@ -1,56 +0,0 @@
# fly.toml app configuration file generated for atrigit on 2024-11-09T01:42:12-07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'atrigit'
primary_region = 'sea'
kill_timeout = '5s'
[build]
image = 'gitea/gitea:latest'
[env]
GITEA__database__DB_TYPE = 'sqlite3'
GITEA__database__PATH = '/data/gitea/gitea.db'
GITEA__security__INSTALL_LOCK = 'true'
GITEA__server__DOMAIN = 'git.atri.dad'
GITEA__server__ROOT_URL = 'https://git.atri.dad'
GITEA__server__SSH_DOMAIN = 'git.atri.dad'
# GITEA____APP_NAME = "Atri's Code Forge"
# GITEA__mailer__ENABLED = true
# GITEA__mailer__PROTOCOL = 'smtp'
# GITEA__mailer__SMTP_ADDR = 'smtp.mail.service'
# GITEA__mailer__SMTP_PORT = '69'
# GITEA__mailer__FROM = 'person@site.com'
# GITEA__mailer__USER = 'user'
# GITEA__mailer__PASSWD = 'password'
[[mounts]]
source = 'gitea_data'
destination = '/data'
[[services]]
protocol = 'tcp'
internal_port = 22
[[services.ports]]
port = 22
[[services]]
protocol = 'tcp'
internal_port = 3000
[[services.ports]]
port = 80
handlers = ['http']
force_https = true
[[services.ports]]
port = 443
handlers = ['tls', 'http']
[[vm]]
memory = '512mb'
cpu_kind = 'shared'
cpus = 1

View file

@ -1,25 +0,0 @@
# fly.toml app configuration file generated for atri-uptime on 2024-10-29T00:49:54-06:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'atri-uptime'
primary_region = 'sea'
[build]
image = 'louislam/uptime-kuma:1'
[[mounts]]
source = 'kuma_data'
destination = '/app/data'
[http_service]
internal_port = 3001
force_https = true
auto_stop_machines = 'off'
auto_start_machines = true
min_machines_running = 1
processes = ['app']
[[vm]]
size = 'shared-cpu-1x'