Compare commits

..

15 Commits

Author SHA1 Message Date
3a65e1f70a [fix] adjust for dokploy auto inject labels 2026-04-12 00:49:09 -04:00
d6228bd28e [temp] gitea: dokploy injection issue? 2026-04-12 00:34:28 -04:00
dc5f69fea9 [revert] 2026-04-12 00:07:35 -04:00
80ff0ed1cf [hot-fix] gitea: timeout issue 2026-04-11 23:55:27 -04:00
e7b03a433e [chore] atual-budget: change retry value 2026-04-06 22:11:04 -04:00
6b92b49dda [update] actual-budget: change form rd domain 2026-04-06 22:09:16 -04:00
78f8ac7feb [add] actual-budget: first compose 2026-04-06 21:30:36 -04:00
c49abc62c2 [update] pocket-id: update app name 2026-04-06 01:32:05 -04:00
db4a506ec9 [add] pocket-id: docker compose
Also testing watch folders in dockploy deployment tabs thats why im
pushing to the main branch
2026-04-06 01:32:05 -04:00
0a0318cfa5 Merge pull request 'update/compose-ini' (#2) from update/compose-ini into main
Reviewed-on: #2
2026-04-06 04:17:00 +00:00
d77a5afff5 [update] post recieve hook to skip prs for now 2026-04-06 00:15:26 -04:00
641cd7f43d [update] handle escaping per documentation 2026-04-05 23:55:44 -04:00
936dfdae55 [add] the entire ini with env vars to compose 2026-04-05 23:53:34 -04:00
143e000d5c Merge pull request '[fix] gitea: revert to app name' (#1) from revert/app-name into main
Reviewed-on: #1
2026-04-06 01:57:12 +00:00
6497cbfff1 [fix] gitea: revert to app name 2026-04-05 21:55:44 -04:00
4 changed files with 131 additions and 6 deletions

View File

@@ -0,0 +1,31 @@
services:
app:
image: docker.io/actualbudget/actual-server:latest-alpine
environment:
- ACTUAL_PORT=5006
- ACTUAL_OPENID_DISCOVERY_URL=https://auth.routinedevelopment.ca/.well-known/openid-configuration
- ACTUAL_OPENID_CLIENT_ID=${OPENID_CLIENT_ID}
- ACTUAL_OPENID_CLIENT_SECRET=${OPENID_CLIENT_SECRET}
- ACTUAL_OPENID_SERVER_HOSTNAME=https://budget.themanniefamily.ca
- ACTUAL_OPENID_ENFORCE=true
- ACTUAL_USER_CREATION_MODE=login
volumes:
- actual-data:/data
networks:
- dokploy-network
labels:
- "traefik.enable=true"
healthcheck:
test: ['CMD-SHELL', 'node src/scripts/health-check.js']
interval: 60s
timeout: 10s
retries: 1
start_period: 20s
restart: unless-stopped
volumes:
actual-data:
networks:
dokploy-network:
external: true

View File

@@ -1,15 +1,81 @@
# Required in Dokploy environment tab:
# POSTGRES_HOST=
# POSTGRES_DB=
# POSTGRES_USER=
# POSTGRES_PASSWORD=
# GITEA_INTERNAL_TOKEN=
# GITEA_LFS_JWT_SECRET=
# GITEA_OAUTH2_JWT_SECRET=
services:
gitea:
app:
image: gitea/gitea:latest
environment:
# System
- USER_UID=1000
- USER_GID=1000
# Database
- GITEA__database__DB_TYPE=postgres
- GITEA__database__HOST=${POSTGRES_HOST}:5432
- GITEA__database__NAME=${POSTGRES_DB}
- GITEA__database__USER=${POSTGRES_USER}
- GITEA__database__PASSWD=${POSTGRES_PASSWORD}
- GITEA__database__SSL_MODE=disable
- GITEA__database__LOG_SQL=false
# Server
- GITEA__server__DOMAIN=gitea.routinedevelopment.ca
- GITEA__server__HTTP_PORT=3000
- GITEA__server__ROOT_URL=https://gitea.routinedevelopment.ca
- GITEA__server__LFS_START_SERVER=true
- GITEA__server__LFS_JWT_SECRET=${GITEA_LFS_JWT_SECRET}
- GITEA__server__OFFLINE_MODE=true
- GITEA__server__SSH_DOMAIN=gitea.routinedevelopment.ca
- GITEA__server__DISABLE_SSH=false
- GITEA__server__SSH_PORT=2222
- GITEA__server__SSH_LISTEN_HOST=0.0.0.0
- GITEA__server__SSH_LISTEN_PORT=2222
- GITEA__server__START_SSH_SERVER=true
- GITEA__server__LANDING_PAGE=explore
# Repository
- GITEA__repository__ROOT=/data/git/repositories
- GITEA__repository__DISABLE_HTTP_GIT=false
# Repository signing
- GITEA__repository_0X2E_signing__DEFAULT_TRUST_MODEL=committer
# Repository pull-request
- GITEA__repository_0X2E_pull_0X2D_request__DEFAULT_MERGE_STYLE=merge
# Security
- GITEA__security__INSTALL_LOCK=true
- GITEA__security__INTERNAL_TOKEN=${GITEA_INTERNAL_TOKEN}
- GITEA__security__PASSWORD_HASH_ALGO=pbkdf2
- GITEA__security__DISABLE_GIT_HOOKS=false
# LFS
- GITEA__lfs__PATH=/data/git/lfs
# Mailer
- GITEA__mailer__ENABLED=false
# Service
- GITEA__service__REGISTER_EMAIL_CONFIRM=false
- GITEA__service__ENABLE_NOTIFY_MAIL=false
- GITEA__service__DISABLE_REGISTRATION=true
- GITEA__service__ALLOW_ONLY_EXTERNAL_REGISTRATION=false
- GITEA__service__ENABLE_CAPTCHA=false
- GITEA__service__REQUIRE_SIGNIN_VIEW=false
- GITEA__service__DEFAULT_KEEP_EMAIL_PRIVATE=false
- GITEA__service__DEFAULT_ALLOW_CREATE_ORGANIZATION=true
- GITEA__service__DEFAULT_ENABLE_TIMETRACKING=true
- GITEA__service__NO_REPLY_ADDRESS=noreply.gitea.routinedevelopment.ca
# OpenID
- GITEA__openid__ENABLE_OPENID_SIGNIN=true
- GITEA__openid__ENABLE_OPENID_SIGNUP=false
# OAuth2
- GITEA__oauth2__JWT_SECRET=${GITEA_OAUTH2_JWT_SECRET}
# Session
- GITEA__session__PROVIDER=file
# Log
- GITEA__log__MODE=console
- GITEA__log__LEVEL=info
# Cron
- GITEA__cron_0X2E_update_checker__ENABLED=false
# Other
- GITEA__other__SHOW_FOOTER_POWERED_BY=false
volumes:
- gitea-data:/data
ports:
@@ -18,10 +84,6 @@ services:
- dokploy-network
labels:
- "traefik.enable=true"
- "traefik.http.routers.gitea.rule=Host(`gitea.routinedevelopment.ca`)"
- "traefik.http.routers.gitea.entrypoints=websecure"
- "traefik.http.routers.gitea.tls.certresolver=letsencrypt"
- "traefik.http.services.gitea.loadbalancer.server.port=3000"
restart: unless-stopped
volumes:
gitea-data:

View File

@@ -1,4 +1,4 @@
#!/usr/bin/env bash
echo "==== GitHub mirror start: $(date) ===="
git push --mirror <ssh uri to mirror repo>
git push <ssh repo ur> +refs/heads/*:refs/heads/* +refs/tags/*:refs/tags/*
echo "==== GitHub mirror end: $(date) ===="

View File

@@ -0,0 +1,32 @@
services:
app:
image: ghcr.io/pocket-id/pocket-id:latest
environment:
- APP_URL=https://auth.routinedevelopment.ca
- APP_NAME=Routine Auth
- TRUST_PROXY=true
- PUID=1000
- PGID=1000
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
- DB_CONNECTION_STRING=${DB_CONNECTION_STRING}
- ANALYTICS_DISABLED=true
volumes:
- pocket-id-data:/app/data
networks:
- dokploy-network
labels:
- "traefik.enable=true"
healthcheck:
test: "curl -f http://localhost:1411/healthz"
interval: 1m30s
timeout: 5s
retries: 2
start_period: 10s
restart: unless-stopped
volumes:
pocket-id-data:
networks:
dokploy-network:
external: true