Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.
forked from xperseguers/pootle

Docker Pootle translation server

Notifications You must be signed in to change notification settings

TYPO3-infrastructure/pootle

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker - Pootle translation server

Start

As pootle consists of multiple components, we provide a docker-compose.yml to bring up and connect all the services.
Use the following command to bring up the environment:

docker-compose up -d

Notice: The mysql-server and the redis cache are not accessible by the outside world. Only the pootle container can access those services.

First run

On the first run you must setup your database and create an admin user.

docker-compose exec pootle bash
pootle migrate
pootle initdb
pootle createsuperuser
pootle verify_user --all

Feeding pootle

Create project in pootle

Connect to the Pootle docker image and initialize the git clone:

docker-compose exec pootle bash
./scripts/bin/initialize-project https://github.com/yourname/someproject.git TYPO3.ext.someproject

First you must create a project in the pootle administration backend. Only super-users can access the backend. By naming convention, your project in pootle must be named TYPO3.ext.myextname if your extension name is myextname.
As file-type choose XLIFF (.xlf) and leave the other settings default.

Uploading an extension to pootle

All extensions must be placed under /srv/pootle/git-clones/repos in order to be imported and maintained by the pootle server. In order to get the files there you can either add a SFTP container that has access to a specific repo folder e.g.

sftp:
    image: atmoz/sftp
    volumes:
        - /host/share:/home/foo/share
    ports:
        - "2222:22"
    command: foo:123:1001    

Or you place a shell script that automatically updates the project in /srv/pootle/git-clones/scripts/myextname.sh that can do e.g. git clone, download, or whatever to get the files to the repos/myextname folder.

TODO

About

Docker Pootle translation server

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 50.7%
  • Python 31.9%
  • XSLT 9.7%
  • Dockerfile 7.7%