-
Copy the repository:
git clone https://github.com/Tonaeus/overlist.git
-
Change the directory:
cd overlist
-
Rebuild and run the containers:
docker-compose -f docker-compose.dev.yml up -d --build
-
Find the ports of the containers:
docker-compose -f docker-compose.dev.yml ps
-
Stop and remove the containers:
docker-compose -f docker-compose.dev.yml down
-
Access the containers at http://localhost:5173.
-
Rebuild and run the containers:
docker-compose -f docker-compose.yml up -d --build
-
Find the ports of the containers:
docker-compose -f docker-compose.yml ps
-
Stop and remove the containers:
docker-compose -f docker-compose.yml down
-
Access the containers at http://localhost:4173.
-
Generate JWT secret
node -e "console.log(require('crypto').randomBytes(64).toString('hex'))"