waterwolf-auth/docker-compose.yml
Kakious e3ba6bf1fd feat: implement consent system
feat: implemented basic org system
feat: implement oidc client code
chore: begain implementing async job code
chore: base code cleanup
2024-10-14 18:21:05 -04:00

20 lines
No EOL
390 B
YAML

version: '3.8'
services:
mysql:
image: mysql:latest
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: waterwolf-auth
ports:
- "3306:3306"
volumes:
- mysql-data:/var/lib/mysql
redis:
image: redis/redis-stack-server:6.2.2-v5
restart: unless-stopped
ports:
- "6379:6379"
volumes:
mysql-data: