feat(Docker): Adding a working Dockerfile and compose to prototype

This commit is contained in:
Josepablo Cruz
2026-04-01 14:03:20 -06:00
parent 4fcd3f01a5
commit bd3fddbbc2
13 changed files with 723 additions and 51 deletions

13
db/service/compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
eta-db:
image: eta/eta-db
container_name: eta-db
ports:
- "3306:3306"
environment:
MYSQL_DATABASE: u947463964_etaviaporte
MYSQL_USER: etaapi
MYSQL_PASSWORD: secret_password
volumes:
# Solve problems related to SELinux `permission denied` when accessing the path
- ./initdb:/docker-entrypoint-initdb.d:Z