Upload files to "/"
commit
c3299b13aa
|
|
@ -0,0 +1,5 @@
|
|||
JSONHERO_WEB_VERSION=latest
|
||||
CONTAINER_NAME=jsonhero_web
|
||||
NETWORK_DRIVER=bridge
|
||||
HOST_PORT=2887
|
||||
CONTAINER_PORT=8787
|
||||
|
|
@ -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}
|
||||
|
||||
Loading…
Reference in New Issue