This commit is contained in:
2026-06-12 15:40:12 -04:00
commit 521653e5de
53 changed files with 8635 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
version: '3.8'
services:
web:
build: .
# command: bundle exec puma -p 4567 -b 0.0.0.0
volumes:
- .:/app
ports:
- "4567:4567"
environment:
- RACK_ENV=development
depends_on:
- db
db:
image: mysql:8.0
environment:
MYSQL_ROOT_PASSWORD: mypassword
MYSQL_DATABASE: dashboard_development
ports:
- "3306:3306"
volumes:
- db_data:/var/lib/mysql
volumes:
db_data: