
Weblate is a copylefted libre software web-based continuous localization system, used by over 2500 libre projects and companies in more than 165 countries.
The docker-compose for Docker container for Weblate
Detailed documentation is available in Weblate documentation:
https://docs.weblate.org/en/latest/admin/install/docker.html
Clone the docker-compose repository:
git clone https://github.com/WeblateOrg/docker-compose.git cd docker-composeCreate a
docker-compose.override.ymlfile with your settings.version: '3'services: weblate: ports: - 80:8080environment: WEBLATE_EMAIL_HOST: smtp.example.comWEBLATE_EMAIL_HOST_USER: userWEBLATE_EMAIL_HOST_PASSWORD: passWEBLATE_ALLOWED_HOSTS: your hostsWEBLATE_ADMIN_PASSWORD: password for admin user
Start it up:
docker-compose up
- For more detailed instructions and configuration visit https://docs.weblate.org/en/latest/admin/install/docker.html
The docker-compose files can be found in https://github.com/WeblateOrg/docker-compose. The weblate docker image is built from https://github.com/WeblateOrg/docker.