Compare commits

...
Author SHA1 Message Date
Beto b149e71f63 fix: remove /etc/timezone bind mount, not present on all hosts
Docker Swarm requires the bind source to exist on the node before
scheduling the task; /etc/timezone is Debian/Ubuntu-specific and
missing on other distros, causing deploy failures. /etc/localtime
alone covers timezone info portably.
2026-08-14 17:57:48 -04:00
3wordchant cae11a78e6 chore: publish 2.10.1+1.22.2-rootless release
continuous-integration/drone/push Build is passing
2024-10-02 14:01:17 -04:00
javielico 8e8809fd07 chore: publish 2.10.0+1.22.1-rootless release
continuous-integration/drone/push Build is passing
2024-08-23 19:21:01 +01:00
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ services:
- GITEA_DB_NAME=gitea
- GITEA_DB_USER=gitea
db:
image: postgres:15.7
image: postgres:15.8
deploy:
labels:
backupbot.backup: "true"
+2 -3
View File
@@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: "gitea/gitea:1.22.0-rootless"
image: "gitea/gitea:1.22.2-rootless"
configs:
- source: app_ini
target: /etc/gitea/app.ini
@@ -55,7 +55,6 @@ services:
volumes:
- data:/var/lib/gitea
- config:/etc/gitea
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
networks:
- proxy
@@ -85,7 +84,7 @@ services:
- "traefik.http.middlewares.${STACK_NAME}_cors.headers.accesscontrolalloworiginlist=https://${GITEA_CORS_ALLOW_DOMAIN}"
- "traefik.http.middlewares.${STACK_NAME}_cors.headers.accesscontrolmaxage=100"
- "traefik.http.middlewares.${STACK_NAME}_cors.headers.addvaryheader=true"
- coop-cloud.${STACK_NAME}.version=2.9.1+1.22.0-rootless
- coop-cloud.${STACK_NAME}.version=2.10.1+1.22.2-rootless
networks: