https://github.com/vepo/karaf-osgi-demo
https://github.com/vepo/karaf-osgi-demo
apache apache-camel apache-karaf camel hello-world karaf
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vepo/karaf-osgi-demo
- Owner: vepo
- Created: 2018-06-27T14:25:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-27T14:26:02.000Z (almost 7 years ago)
- Last Synced: 2025-01-16T06:55:55.312Z (4 months ago)
- Topics: apache, apache-camel, apache-karaf, camel, hello-world, karaf
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Apache Karaf Docker example
This image of Karaf is build with a very simple Apache Camel command. It reads the files inside `/tmp/in` copying to `/tmp/out`.
## Start
```
docker build -t karaf .
docker run --name karaf -p 8101:8101 karaf
```## Connect
Use the password `karaf`.
```
ssh -p 8101 karaf@localhost
```## Test
1. Access:
```
docker exec -it karaf bash
```2. Create Input file
```
echo "TEST" > /tmp/in/test.txt
```3. Check output
```
cat /tmp/out/test.txt
```