2024-05-05 11:05:51 +02:00
|
|
|
version: '3.9'
|
|
|
|
|
|
|
|
services:
|
|
|
|
# Gitea
|
|
|
|
gitea:
|
|
|
|
image: gitea/gitea:latest-rootless
|
|
|
|
container_name: gitea
|
|
|
|
profiles:
|
|
|
|
- gitea
|
|
|
|
restart: on-failure
|
|
|
|
depends_on:
|
|
|
|
- caddy
|
|
|
|
env_file:
|
|
|
|
- env/gitea.env
|
|
|
|
volumes:
|
|
|
|
- gitea_data:/var/lib/gitea
|
|
|
|
- gitea_config:/etc/gitea
|
|
|
|
# - /etc/timezone:/etc/timezone:ro
|
|
|
|
# - /etc/localtime:/etc/localtime:ro
|
|
|
|
networks:
|
|
|
|
- infra-network
|
|
|
|
security_opt:
|
|
|
|
- no-new-privileges:true
|
|
|
|
|
|
|
|
# Database gitea
|
|
|
|
database_gitea:
|
|
|
|
image: mariadb:latest
|
|
|
|
container_name: database_gitea
|
|
|
|
profiles:
|
|
|
|
- database
|
|
|
|
- gitea
|
|
|
|
depends_on:
|
|
|
|
- gitea
|
|
|
|
restart: on-failure
|
|
|
|
volumes:
|
|
|
|
- gitea_db:/var/lib/mysql:rw
|
|
|
|
env_file:
|
|
|
|
- env/gitea_db.env
|
|
|
|
command: '--default-authentication-plugin=mysql_native_password'
|
|
|
|
networks:
|
|
|
|
- infra-network
|
|
|
|
security_opt:
|
|
|
|
- no-new-privileges:true
|
2024-05-05 22:38:14 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
gitea_data:
|
|
|
|
name: gitea_data
|
|
|
|
gitea_config:
|
|
|
|
name: gitea_config
|
|
|
|
gitea_db:
|
|
|
|
name: gitea_db
|