Upload files to "/"

master
Giteadmin 2023-09-17 12:28:36 +02:00
commit c3299b13aa
2 changed files with 22 additions and 0 deletions

5
.env Normal file
View File

@ -0,0 +1,5 @@
JSONHERO_WEB_VERSION=latest
CONTAINER_NAME=jsonhero_web
NETWORK_DRIVER=bridge
HOST_PORT=2887
CONTAINER_PORT=8787

17
docker-compose.yml Normal file
View File

@ -0,0 +1,17 @@
version: '3.8'
services:
jsonhero_web:
image: henryclw/jsonhero-web:${JSONHERO_WEB_VERSION:-latest}
container_name: ${CONTAINER_NAME:-jsonhero_web}
ports:
- "${HOST_PORT:-8787}:${CONTAINER_PORT:-8787}"
networks:
- br_jsonhero
networks:
default:
driver: bridge
br_jsonhero:
driver: ${NETWORK_DRIVER:-bridge}