'Where Can I Find Tutorials for Creating a onesided registration and login system?

What I mean is, I would like a tutorial of creating a login system in php, were I assign the username and password, and give it to the users I want to be able to access https://fileshare.parlocameoncorporation.com. First, I will explain how my system works. Chart: index.html(access granted screen) -> select.html(request file) -> downloader.php(displays progress bar and request file download) from -> download.php. Thank you for your time. P.s there is a code bug, and I'm sorry for a possibly insulting message that involves hacking if you request a file that’s not found. As a example file, please request example.txt.



Solution 1:[1]

I personally solved the problem by adding an image tag

services:
  web:
    image: image-name:v1.0

Every time the name is changed, docker compose up --build recreates the image

Step 1) Increase the version of the tag
Step 2) Run the following commands

$ docker-compose --context CONTEXT -f docker-compose.yaml build
$ docker-compose --context CONTEXT -f docker-compose.yaml stop
$ docker-compose --context CONTEXT -f docker-compose.yaml rm -f
$ docker-compose --context CONTEXT -f docker-compose.yaml up -d --build\

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Plamen Nikolov