docker-compose up -d --build- Website: http://localhost:6565
- Admin Panel: http://localhost:6565/admin/
View logs:
docker-compose logs -fStop the application:
docker-compose downRestart the application:
docker-compose restartRebuild after code changes:
docker-compose up -d --buildAccess container shell:
docker exec -it cybercon-app bashβ
PHP 8.1 with Apache
β
SQLite database (pre-configured)
β
All PHP extensions installed
β
Persistent data volumes
β
Proper file permissions
β
Port 6565 configured
Port already in use:
Edit docker-compose.yml and change port 6565 to another port.
Permission errors:
chmod -R 777 database uploads admin/sent_emailsFor more details, see docker/README.md