Add Drone stuff
This commit is contained in:
parent
8662c3a618
commit
540937fe25
2 changed files with 18 additions and 4 deletions
14
.drone.yml
Normal file
14
.drone.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
kind: pipeline
|
||||||
|
name: default
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Build and publish Docker image
|
||||||
|
image: plugins/docker
|
||||||
|
pull: always
|
||||||
|
settings:
|
||||||
|
repo: askiiart/discord-tribune-aquila-bot
|
||||||
|
tags: latest
|
||||||
|
username:
|
||||||
|
from_secret: docker_username
|
||||||
|
password:
|
||||||
|
from_secret: docker_password
|
|
@ -1,13 +1,13 @@
|
||||||
# Docker stuff
|
# Docker stuff
|
||||||
|
|
||||||
A dockerization of [tribune-pontius-aquila-bot](https://git.plantsfarmus.duckdns.org/askiiart/tribune-pontius-aquila-bot)
|
A Docker/container-ization of the Tribune Pontius Aquila bot.
|
||||||
|
|
||||||
docker-compose.yml:
|
docker-compose.yml:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
ervices:
|
services:
|
||||||
aquila-bot:
|
aquila-bot:
|
||||||
image: 'agelpen/discord-tribune-aquila-bot:latest'
|
image: 'askiiart/discord-tribune-aquila-bot:latest'
|
||||||
volumes:
|
volumes:
|
||||||
- ./.env:/app/.env
|
- ./.env:/app/.env
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
@ -19,6 +19,6 @@ ervices:
|
||||||
TOKEN='<YOUR_TOKEN_HERE>'
|
TOKEN='<YOUR_TOKEN_HERE>'
|
||||||
```
|
```
|
||||||
|
|
||||||
# What the bot actually does
|
## What the bot actually does
|
||||||
|
|
||||||
When someone says "/aquila", the bot replies "Who gave permission for this? I sure as hell didn't."
|
When someone says "/aquila", the bot replies "Who gave permission for this? I sure as hell didn't."
|
Loading…
Reference in a new issue