Docker-jsonhero-dockerized/docker-compose.yml

18 lines
352 B
YAML

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}