You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

34 lines
672 B

version: "2"
services:
server:
image: gitea/gitea:1.11.6
environment:
- USER_UID=1000
- USER_GID=1000
- DB_TYPE=mysql
- DB_HOST=db:3306
- DB_NAME=gitea
- DB_USER=gitea
- DB_PASSWD=gitea
restart: always
volumes:
- ./app:/data
ports:
- "3000:3000"
- "222:22"
container_name: openwill-gitea
depends_on:
- db
db:
image: mariadb:10.5.3
restart: always
environment:
- MYSQL_ROOT_PASSWORD=gitea
- MYSQL_USER=gitea
- MYSQL_PASSWORD=gitea
- MYSQL_DATABASE=gitea
container_name: openwill-gitea-db
volumes:
- ./mariadb:/var/lib/mysql