Initial check-In!
This commit is contained in:
25
gitea/docker-compose.yml
Normal file
25
gitea/docker-compose.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
version: '2'
|
||||||
|
services:
|
||||||
|
web:
|
||||||
|
image: gitea/gitea:1.12.4
|
||||||
|
volumes:
|
||||||
|
- gitea_data:/data
|
||||||
|
ports:
|
||||||
|
- "3000:3000"
|
||||||
|
- "22:22"
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
restart: always
|
||||||
|
db:
|
||||||
|
image: mariadb:10
|
||||||
|
volumes:
|
||||||
|
- gitea_mariadb:/var/lib/mysql
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- MYSQL_ROOT_PASSWORD=inginf95
|
||||||
|
- MYSQL_DATABASE=gitea
|
||||||
|
- MYSQL_USER=gitea
|
||||||
|
- MYSQL_PASSWORD=inginf95
|
||||||
|
volumes:
|
||||||
|
gitea_data:
|
||||||
|
gitea_mariadb:
|
||||||
Reference in New Issue
Block a user