This is a simple Dockerized Laravel application that shows currency value in BTC.
git clone https://github.com/tooruu/cryptoconv.git
cd cryptoconv
Copy the example environment file and adjust it according to your needs:
cp .env.example .env
docker-compose up -d
Due to how Docker just works, we have to run these commands after up
ing the container.
You only need to run this step once.
docker-compose exec app composer update
docker-compose exec app composer install
docker-compose exec app php artisan migrate --seed --force
docker-compose exec app php artisan key:generate
Once the container is running, you can access the application at http://localhost/public.
To stop the Docker container, run:
docker-compose down