Web Access
Open in browser: http://<SERVER_IP>:9080
This will launch the initialization wizard, which guides through:
- Language selection
- Database configuration: SQLite does not require any additional configuration. If you want to use MySQL or PostgreSQL, you need to setup the database first and then configure the database connection in this step.
- Configuration file creation
- Site basic info
- Completion of setup
Important Files and Directories
/root/answer/docker-compose.yml→ Docker Compose definition/var/lib/docker/volumes/answer_answer-data→ Stores persistent data (content, configs)
Docker Management Commands
docker compose -f /root/answer/docker-compose.yml ps # Check running containers
docker compose -f /root/answer/docker-compose.yml logs -f # Follow logs
docker compose -f /root/answer/docker-compose.yml restart # Restart service
docker compose -f /root/answer/docker-compose.yml down # Stop containers