Simple service for comparations files tree
262
Repository: https://github.com/sea-kg/web-diff-files-tree Example upload informaton: https://github.com/sea-kg/web-diff-files-tree/tree/main/example
Example of docker-compose file:
version: '3'
services:
webdifffilestree_db:
image: mysql:5.7
command: --default-authentication-plugin=mysql_native_password
volumes:
- "./web-diff-files-tree_mysql_data:/var/lib/mysql"
restart: always
environment:
MYSQL_ROOT_PASSWORD: KzhyntJxwt
MYSQL_DATABASE: webdiff
MYSQL_USER: webdiffu
MYSQL_PASSWORD: jET3E4W9vm
networks:
- webdifffilestree_net
webdifffilestree_server:
image: sea5kg/web-diff-files-tree:latest
ports:
- 8071:1234
environment:
WEBDIFF_DB_HOST: webdifffilestree_db
WEBDIFF_DB_NAME: webdiff
WEBDIFF_DB_USER: webdiffu
WEBDIFF_DB_PASS: jET3E4W9vm
WEBDIFF_DB_PORT: 3306
restart: always
networks:
- webdifffilestree_net
networks:
webdifffilestree_net:
driver: bridge
Look on http://localhost:8071/
Content type
Image
Digest
Size
53.9 MB
Last updated
almost 5 years ago
docker pull sea5kg/web-diff-files-tree