Replies: 3 comments 2 replies
-
|
I have a similar problem, forgejo currently sitting on port 3000. And this becomes a catch 22. |
Beta Was this translation helpful? Give feedback.
-
|
Well the invalid volume Instead of this: services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 3000:3000
volumes:
- /data/stacks/doco-cd/192.168.122.211:3000/eff/doco-cd-2/stacks/homepage/config:/app/config:rwUse this: services:
homepage:
image: ghcr.io/gethomepage/homepage:latest
container_name: homepage
ports:
- 3000:3000
volumes:
- type: bind
source: /data/stacks/doco-cd/192.168.122.211:3000/eff/doco-cd-2/stacks/homepage/config
target: /app/config
read_only: false |
Beta Was this translation helpful? Give feedback.
-
|
Just spitballing here.... Do you have another host you can temporarily use as proxy for gitea? Have an RPi sitting around? Temporarily point your DNS record to the other host and run traefik on it to proxy to gitea for the redeploy. Once the dust settles and traefik is managed by doco-cd, point your DNS back where it belongs. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Have Gitea sitting behind Traefik. Trying to get Doco-CD to handle Traefik deployment, my thinking:
compose downTraefikpoll-config.yaml.Assuming my logic above is sound, using
poll-config.yaml, is the below YAML valid?Does interval have any affect if
run_onceis set totrue? For example, will I have to wait 300 seconds for first run?Beta Was this translation helpful? Give feedback.
All reactions