Docker is the recommended way to run Taskany Issues β updated Docker images based on Alpine Linux are available on a weekly release cadence and are tested by the maintaining team.
Using this sample file as a reference create a .env
file to contain the environment variables for your installation.
It is recommended to use Docker Compose to manage the various docker containers, if your Postgres is running in the cloud then you may skip this step and run the single Taskany Issues docker container directly.
- Install Docker Compose.
- Create a
docker-compose.yml
file, an example configuration with all dependencies dockerized and environment variables kept in.env
is as follows.
version: '3'
services:
db:
image: postgres:11.6
container_name: postgres
env_file: ./.env
ports:
- 5432:5432
volumes:
- ./postgres/data:/var/lib/postgresql/data
taskany_issues:
image: taskany/issues:latest
env_file: ./.env
depends_on:
- db
ports:
- 3000:3000
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:3000/api/auth/signin']
interval: 3s
timeout: 10s
retries: 3
It is recommended to pin the version of the image rather than relying on the latest tag so that you can remain in control of upgrades, eg image: taskany/issues:1.0.0
.
Make sure you are in the same directory as docker-compose.yml
and start Taskany Issues:
docker-compose up -d
Migrate the database to add needed tables, indexes, etc:
docker-compose run --rm taskany_issues npm run db:migrate
If you want to test Taskany Issues with some promo data:
docker-compose run --rm taskany_issues npm run db:seed
If you are installing the enterprise edition the image name should be taskany/issues-enterprise
. Firstly you need to create custom Dockerfile
based on enterprise image:
FROM taskany/issues-enterprise as build
WORKDIR /app
COPY .taskany.config.json .
RUN npm ci
RUN npm run build
FROM node:20.9.0-alpine AS runner
WORKDIR /app
COPY --from=build /app/package*.json ./
COPY --from=build /app/prisma ./prisma
COPY --from=build /app/public ./public
COPY --from=build /app/version ./public/version.txt
COPY --from=build /app/.next ./.next
COPY --from=build /app/next.config.js ./
COPY --from=build /app/.next/standalone ./
COPY --from=build /app/background ./background
RUN npm ci --only=production --ignore-scripts && npm cache clean --force
RUN npx prisma generate
EXPOSE 3000
CMD ["node_modules/.bin/concurrently", "node background/worker/index.js", "node server.js"]
Then use this Dockerfile
with Docker Compose is as follows:
version: '3'
services:
db:
image: postgres:11.6
container_name: postgres
env_file: ./.env
ports:
- 5432:5432
volumes:
- ./postgres/data:/var/lib/postgresql/data
taskany_issues:
container_name: issues
env_file: ./.env
stdin_open: true
build:
context: .
dockerfile: Dockerfile
depends_on:
- db
ports:
- 3000:3000
healthcheck:
test: ['CMD', 'curl', '-f', 'http://localhost:3000/api/auth/signin']
interval: 3s
timeout: 10s
retries: 3
Taskany can send request traces to an OpenTelemetry Collector. To use this feature specify the collector endpoint with OTEL_EXPORTER_OTLP_ENDPOINT
.
(optional) Set the TASKANY_OPEN_TELEMETRY_SERVICE_NAME
environment variable to be the declared service name.
Please follow code of conduct first. Than use instructions in contributing guide to create your first PR.