First push from proxy (docker host) to gitea
This commit is contained in:
commit
a69fa8cc56
25 changed files with 781 additions and 0 deletions
5
mariadb/.env
Normal file
5
mariadb/.env
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Mysql Parameters
|
||||
MYSQL_ROOT_PASSWORD = pass@w0rd1
|
||||
MYSQL_DATABASE = snipeit
|
||||
MYSQL_USER = snipeit
|
||||
MYSQL_PASSWORD = pass@w0rd1
|
||||
17
mariadb/docker-compose.yml
Normal file
17
mariadb/docker-compose.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue