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
|
||||
|
||||
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:
|
||||
|
||||
```yaml
|
||||
ervices:
|
||||
services:
|
||||
aquila-bot:
|
||||
image: 'agelpen/discord-tribune-aquila-bot:latest'
|
||||
image: 'askiiart/discord-tribune-aquila-bot:latest'
|
||||
volumes:
|
||||
- ./.env:/app/.env
|
||||
restart: unless-stopped
|
||||
|
@ -19,6 +19,6 @@ ervices:
|
|||
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."
|
Loading…
Reference in a new issue