You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
anyone encountering this issue? I built it using docker-compose.yaml.
I am unable to create new user because of the button is like that in the picture. If I create a document, there is no way to delete the added widget.
I did changes to files below to make the gui accessible and to remove the source IP in the template when signing documents.
- opensign-files:/usr/src/app/files
- /var/temp/opensight/templates/GenerateCertificate.js:/usr/src/app/cloud/parsefunction/pdf/GenerateCertificate.js
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
anyone encountering this issue? I built it using docker-compose.yaml.
I am unable to create new user because of the button is like that in the picture. If I create a document, there is no way to delete the added widget.
I did changes to files below to make the gui accessible and to remove the source IP in the template when signing documents.
- opensign-files:/usr/src/app/files
- /var/temp/opensight/templates/GenerateCertificate.js:/usr/src/app/cloud/parsefunction/pdf/GenerateCertificate.js
here is what inside my docker-compose.yml file
version: "3.8"
services:
server:
image: opensign/opensignserver:main
container_name: OpenSignServer-container
volumes:
- opensign-files:/usr/src/app/files
- /var/temp/opensight/templates/GenerateCertificate.js:/usr/src/app/cloud/parsefunction/pdf/GenerateCertificate.js
depends_on:
- mongo
env_file: .env.prod
environment:
- NODE_ENV=production
expose:
- "8080"
networks:
- app-network
mongo:
image: mongo:latest
container_name: mongo-container
volumes:
- data-volume:/data/db
expose:
- "27017"
networks:
- app-network
client:
image: opensign/opensign:main
container_name: OpenSign-container
depends_on:
- server
env_file: .env.prod
expose:
- "3000"
volumes:
- ./client-patch/index.html:/usr/src/app/build/index.html:ro
- ./client-patch/main-DzkKmA9g.css:/usr/src/app/build/assets/main-DzkKmA9g.css:ro
networks:
- app-network
caddy:
image: caddy:latest
container_name: caddy-container
ports:
- "8000:8000"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
networks:
- app-network
networks:
app-network:
driver: bridge
volumes:
data-volume:
caddy_data:
caddy_config:
opensign-files:
Beta Was this translation helpful? Give feedback.
All reactions