Fix issue with ports on gitea

This commit is contained in:
whitney 2024-01-16 14:26:45 -08:00
parent 32d6be6262
commit f572633dbd
2 changed files with 2 additions and 13 deletions

View File

@ -22,7 +22,7 @@ Followed instructions on Gitea page: https://docs.gitea.com/next/installation/in
4. Stop server and set value in app.ini.
Add magic line to /data/persistent/gitea/gitea/gitea/conf/app.ini because local workers will otherwise assume they can use our custom port 3330 to reach services locally. Have to specify local url here.
Add magic line to /data/persistent/gitea/gitea/gitea/conf/app.ini because local workers will otherwise assume they can use our port 3000 to reach services locally. Have to specify local url here.
This goes in the [server] section. (https://docs.gitea.com/next/administration/config-cheat-sheet)
@ -36,7 +36,7 @@ Also modify the following:
Then start containers again.
5. Go to xxx.xxx.xx.xxx:3300 and fill out initial config. Everything should match up to default values.
5. Go to xxx.xxx.xx.xxx:3000 and fill out initial config. Everything should match up to default values.
Some things that were weird:

View File

@ -4,14 +4,3 @@ Reference: https://hub.docker.com/_/monica
### Installation
Using the default dockerfile provided, change the following
- ports - default port will collide with traefik. Use something like 8022.
- APP_KEY - generated with `echo -n 'base64:'; openssl rand -base64 32` like they suggest.
- env vars - change default user/pw
- Add traefik tags.
Run everything & follow instructions.