Add testing tools
This commit is contained in:
@@ -1,2 +1 @@
|
|||||||
/resources
|
|
||||||
README.md
|
README.md
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
*.env*
|
33
docker-compose.yml
Normal file
33
docker-compose.yml
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
services:
|
||||||
|
db:
|
||||||
|
image: lscr.io/linuxserver/mariadb
|
||||||
|
restart: always
|
||||||
|
env_file:
|
||||||
|
- db.env
|
||||||
|
volumes:
|
||||||
|
- "~/config/Pterodactyl/MariaDB:/config"
|
||||||
|
|
||||||
|
adminer:
|
||||||
|
image: adminer:latest
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 8080:8080
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis:alpine
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
panel:
|
||||||
|
build: .
|
||||||
|
environment:
|
||||||
|
DBHOST: "db"
|
||||||
|
REDISHOST: "redis"
|
||||||
|
volumes:
|
||||||
|
- "~/config/Pterodactyl/Panel:/config"
|
||||||
|
ports:
|
||||||
|
- 80:80
|
||||||
|
depends_on:
|
||||||
|
- db
|
||||||
|
- redis
|
Reference in New Issue
Block a user