updated gitea and trafik to newer versions

This commit is contained in:
hyung-hwan 2023-10-01 12:55:28 +09:00
parent 1424c21afc
commit 173c41e40c
2 changed files with 7 additions and 2 deletions

View File

@ -11,7 +11,7 @@ networks:
services: services:
gitea-service: gitea-service:
image: gitea/gitea:1.20.1 image: gitea/gitea:1.20.4
hostname: gitea-service-host hostname: gitea-service-host
tty: true tty: true
environment: environment:

View File

@ -9,7 +9,7 @@ networks:
services: services:
traefik-service: traefik-service:
image: docker.io/traefik:2.9 image: docker.io/traefik:2.10.1
hostname: traefik-service-host hostname: traefik-service-host
tty: true tty: true
environment: environment:
@ -35,6 +35,10 @@ services:
published: 443 published: 443
protocol: tcp protocol: tcp
mode: host mode: host
- target: 3306
published: 3306
protocol: tcp
mode: host
- target: 4444 - target: 4444
published: 4444 published: 4444
protocol: tcp protocol: tcp
@ -58,6 +62,7 @@ services:
##- --entrypoints.web.http.redirections.entryPoint.to=websec ##- --entrypoints.web.http.redirections.entryPoint.to=websec
##- --entrypoints.web.http.redirections.entryPoint.scheme=https ##- --entrypoints.web.http.redirections.entryPoint.scheme=https
- --entrypoints.websec.address=:443 - --entrypoints.websec.address=:443
- --entrypoints.mariadb.address=:3306
- --providers.docker.swarmmode=true - --providers.docker.swarmmode=true
- --providers.docker.exposedbydefault=false - --providers.docker.exposedbydefault=false
- --providers.docker.network=traefik-network - --providers.docker.network=traefik-network