removed ports from docker compose now its handeld by the proxy manager
This commit is contained in:
parent
88cfd8f663
commit
7f8c59b81b
|
@ -1,4 +1,4 @@
|
|||
APP_NAME = Gitea: Git with a cup of tea
|
||||
APP_NAME = Personal Git
|
||||
RUN_MODE = prod
|
||||
RUN_USER = git
|
||||
WORK_PATH = /data/gitea
|
||||
|
@ -14,10 +14,10 @@ TEMP_PATH = /data/gitea/uploads
|
|||
|
||||
[server]
|
||||
APP_DATA_PATH = /data/gitea
|
||||
DOMAIN = 173.249.55.18
|
||||
DOMAIN = lorenzzz.dev
|
||||
SSH_DOMAIN = 173.249.55.18
|
||||
HTTP_PORT = 3000
|
||||
ROOT_URL = http://173.249.55.18:3000/
|
||||
ROOT_URL = http://lorenzzz.dev:3000/
|
||||
DISABLE_SSH = false
|
||||
SSH_PORT = 22
|
||||
SSH_LISTEN_PORT = 22
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{{template "base/head" .}}
|
||||
<div role="main" aria-label="{{if .IsSigned}}{{ctx.Locale.Tr "dashboard"}}{{else}}{{ctx.Locale.Tr "home"}}{{end}}" class="page-content home">
|
||||
<div class="gt-mb-5 gt-px-5">
|
||||
<div class="center">
|
||||
<img class="logo" width="220" height="220" src="{{AssetUrlPrefix}}/img/logo.svg" alt="{{ctx.Locale.Tr "logo"}}">
|
||||
<div class="hero">
|
||||
<h1 class="ui icon header title">
|
||||
{{AppName}}
|
||||
</h1>
|
||||
<h2>{{ctx.Locale.Tr "startpage.app_desc"}}</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{template "base/footer" .}}
|
|
@ -25,12 +25,8 @@ services:
|
|||
- ./gitea:/data
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
ports:
|
||||
- "3000:3000"
|
||||
- "222:22"
|
||||
depends_on:
|
||||
- db
|
||||
|
||||
db:
|
||||
image: postgres:14
|
||||
restart: always
|
||||
|
@ -40,5 +36,6 @@ services:
|
|||
- POSTGRES_DB=gitea
|
||||
networks:
|
||||
- gitea
|
||||
- proxy-manager_default
|
||||
volumes:
|
||||
- ./postgres:/var/lib/postgresql/data
|
||||
|
|
Loading…
Reference in New Issue