Manage your entire translation workflow in one place. This open-source platform is designed for teams to collaborate effectively and reach users globally. Get your project set up in seconds, find what you need with instant search, and edit translations with ease.
Key features include:
services:
db:
image: mariadb:10.5
restart: always
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
volumes:
- ./db-data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
- MYSQL_DATABASE=traduora
- MYSQL_USER=traduora
- MYSQL_PASSWORD=${DB_PASSWORD}
app:
image: everco/ever-traduora:latest
restart: always
ports:
- "8080:8080"
environment:
- TRADUORA_URL=http://localhost:8080
- TRADUORA_SECRET=${TRADUORA_SECRET}
- DB_HOST=db
- DB_PORT=3306
- DB_NAME=traduora
- DB_USER=traduora
- DB_PASSWORD=${DB_PASSWORD}
depends_on:
- db
MYSQL_ROOT_PASSWORD=super_secret_root_password
DB_PASSWORD=super_secret_db_password
TRADUORA_SECRET=replace_this_with_a_long_random_secret_string
Auto-fetched about 18 hours ago
Auto-fetched about 18 hours ago