Compare commits

..

9 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
3 changed files with 63 additions and 4 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

@@ -84,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

@@ -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