Compare commits
No commits in common. "6a1ff78ad08207e815bb7af8c0b05cb716492a79" and "f1a7aec0732bcdd6b3fd18e6e874b3d8ec2a7fb2" have entirely different histories.
6a1ff78ad0
...
f1a7aec073
16
.drone.yml
16
.drone.yml
@ -1,16 +0,0 @@
|
|||||||
kind: pipeline
|
|
||||||
type: kubernetes
|
|
||||||
name: pepebot_build
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build-main
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
registry: dutchellie.nl
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
repo: dutchellie.nl/dutchellie/pepebot
|
|
||||||
tags:
|
|
||||||
- latest
|
|
@ -1,32 +1,33 @@
|
|||||||
version: "3.7"
|
version: "3.7"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
container_name: pepebot_server
|
container_name: pepebot_server
|
||||||
image: dutchellie.nl/dutchellie/pepebot
|
image: dutchellie/pepebot
|
||||||
restart: always
|
restart: always
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
environment:
|
environment:
|
||||||
- DB_USER=changemeusername
|
- DB_USER=
|
||||||
- DB_PASS=changemepassword
|
- DB_PASS=
|
||||||
- DISCORD_TOKEN=<discord token>
|
- DISCORD_TOKEN=
|
||||||
- RATE_LIMIT=2 # 2 Actions per TIME_LIMIT
|
- RATE_LIMIT=
|
||||||
- TIME_LIMIT=5 # Per second
|
- TIME_LIMIT=
|
||||||
- PEPE_SERVER=pepe_service:4000
|
- PEPE_SERVER=
|
||||||
db:
|
db:
|
||||||
container_name: pepebot_database
|
container_name: pepebot_database
|
||||||
image: mysql:8.0
|
image: mysql:8.0
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
MYSQL_ROOT_PASSWORD: changeme
|
MYSQL_ROOT_PASSWORD:
|
||||||
MYSQL_DATABASE: pepebot
|
MYSQL_DATABASE:
|
||||||
MYSQL_USER: changemeusername
|
MYSQL_USER:
|
||||||
MYSQL_PASSWORD: changemepassword
|
MYSQL_PASSWORD:
|
||||||
volumes:
|
volumes:
|
||||||
- pepe_db_data:/var/lib/mysql
|
- pepe_db_data:/var/lib/mysql
|
||||||
pepe_service:
|
pepe_service:
|
||||||
container_name: pepebot_service
|
container_name: pepebot_service
|
||||||
image: dutchellie.nl/dutchellie/pepebot_service:latest
|
image: dutchellie/pepebot_service:latest
|
||||||
restart: always
|
restart: always
|
||||||
environment:
|
environment:
|
||||||
- PEPE_DIR=/pepe/1.00
|
- PEPE_DIR=/pepe/1.00
|
||||||
|
Loading…
Reference in New Issue
Block a user