An open API service indexing awesome lists of open source software.

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

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
```