Files
cunningham/docker-compose.yml
Nathan Vasse 90feb4ba4a 🌐(react) add i18n
We need to be able to use localized texts for various components, like for
accessible labels. We decided to setup a lightweight implementation of
localizable to avoid relying on an existing heavy library.
The Provider includes by default full translations for english, and it is
also made to be able to load easily any custom locale directly from the
Provider.
2023-03-28 12:00:27 +02:00

22 lines
365 B
YAML

version: "3.5"
services:
node:
image: node:16.15
working_dir: /app
user: "${DOCKER_USER:-1000}"
ports:
- "3200:3200"
- "3201:3201"
- "6006:6006"
volumes:
- .:/app
crowdin:
image: crowdin/cli:3.10.0
user: "${DOCKER_USER:-1000}"
working_dir: /app
env_file: env.d/crowdin
volumes:
- ".:/app"