Welcome to the Football League DB repository! This project contains the configuration files for setting up the database environment using Docker Compose.
Follow these steps to set up the database environment locally:
cd football-league-database
Start the database services using Docker Compose:
docker-compose up
You can clear the tables by running the following command:
docker-compose down -v && docker-compose up
This command will start the database services defined in the docker-compose.yml
file in detached mode.
Once the containers are up and running, you can verify the database setup by connecting to the database using your preferred database management tool (e.g., DBeaver, TablePlus) or by running database queries.
The following services are included in the Docker Compose configuration:
- MariaDB: Database server for storing application data.
You can customize the database configuration by modifying the docker-compose.yml
file and environment variables as needed.