Accent

Open-source, self-hosted, developer-oriented translation tool.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.7'
services:
  application:
    container_name: accent
    network_mode: "host"
    build: .
    ports:
      - 4000:4000
    depends_on:
      - postgresql
    environment:
      - PORT=4000
      - DATABASE_URL=postgres://postgres@localhost:5432/accent_development
  postgresql:
    image: postgres:15.6
    container_name: accent-postgres
    environment:
      - POSTGRES_DB=accent_development
    ports:
      - 5432:5432
    volumes:
      - ./accent_psql:/var/lib/postgresql/data
    restart: unless-stopped

Resources

Website: https://www.accent.reviews/

GitHub: https://github.com/mirego/accent

Docker Hub: https://hub.docker.com/r/mirego/accent

Configuration: https://www.accent.reviews/guides/deploy