Working on adding docker stuff

This commit is contained in:
jude
2024-09-28 14:22:12 +01:00
parent f7b9f9fd8c
commit 7395685e0d
103 changed files with 5734 additions and 497 deletions

16
compose.yaml Normal file
View File

@ -0,0 +1,16 @@
version: '3.3'
services:
database:
image: mysql:8.0
restart: always
environment:
MYSQL_DATABASE: 'reminders'
MYSQL_USER: 'reminder-bot'
ports:
- '3306:3306'
expose:
- '3306'
volumes:
- reminders:/var/lib/mysql