First push from proxy (docker host) to gitea

This commit is contained in:
root 2023-05-08 16:35:25 +00:00
commit a69fa8cc56
25 changed files with 781 additions and 0 deletions

5
mariadb/.env Normal file
View file

@ -0,0 +1,5 @@
# Mysql Parameters
MYSQL_ROOT_PASSWORD = pass@w0rd1
MYSQL_DATABASE = snipeit
MYSQL_USER = snipeit
MYSQL_PASSWORD = pass@w0rd1

View file

@ -0,0 +1,17 @@
version: "3"
services:
db:
image: mariadb:10.5
container_name: mariadb
hostname: ims
restart: always
volumes:
- /root/mariadb/data:/var/lib/mysql
env_file: .env
networks:
- backend
networks:
backend:
external: true