https://github.com/kit-data-manager/next-frontend-collection
https://github.com/kit-data-manager/next-frontend-collection
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kit-data-manager/next-frontend-collection
- Owner: kit-data-manager
- Created: 2024-04-29T20:52:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-21T17:07:39.000Z (4 months ago)
- Last Synced: 2026-01-21T23:14:11.467Z (4 months ago)
- Language: TypeScript
- Size: 2.69 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Next Frontend Collection
This repository contains a collection of frontends for the KIT Data Manager service portfolio.
## Build and run as single Docker container
```bash
# 1. Pull the release image
docker pull ghcr.io/kit-data-manager/next-frontend-collection:v0.0.1
# 2. Run container interactively, mounting your environment files
docker run --rm -it \
-v $(pwd)/.env:/app/.env \
-v $(pwd)/next.config.js:/app/next.config.js \
ghcr.io/kit-data-manager/next-frontend-collection:v0.0.1 \
bash -c "npm run build && npm start"
```
## Include in docker-compose setup
```yaml
version: "3.8"
services:
nextjs:
image: ghcr.io/kit-data-manager/next-frontend-collection:v0.0.1
ports:
- "3000:3000"
env_file:
- .env
volumes:
- ./next.config.js:/app/next.config.js
command: bash -c "npm run build && npm start"
```