https://github.com/acaranta/docker-tinyca
TinyCA container with HTTP Gui Access
https://github.com/acaranta/docker-tinyca
Last synced: 3 months ago
JSON representation
TinyCA container with HTTP Gui Access
- Host: GitHub
- URL: https://github.com/acaranta/docker-tinyca
- Owner: acaranta
- Created: 2020-01-10T23:43:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-10T23:55:11.000Z (over 6 years ago)
- Last Synced: 2025-04-09T14:36:30.919Z (about 1 year ago)
- Language: Dockerfile
- Size: 33.2 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TinyCA2 container
This container allows you to have a working TinyCA2 app, reachable via a http noVNC that can be placed behind a reverse proxy.
More information about the noVNC baseimage here : https://github.com/jlesage/docker-baseimage-gui.
Basically, here is a docker-compose exmaple of how to use it :
```
version: '2'
services:
tinyca:
image: acaranta/docker-tinyca
environment:
- VNC_PASSWORD=
volumes:
- :/app/data:rw
- :/app/export:rw
ports:
- 5800:5800
```