Skip to content
Snippets Groups Projects
docker-compose.yml 339 B
version: "3.1"

services:
  admin-gui:
    build: .
    image: registry.alpha.grandlyon.com/refonte-data/admin-gui:${TAG}
    volumes: 
      - ./nginx.conf.template:/etc/nginx/conf.d/default.conf
      - ${CONFIG_FILE_PATH}:/usr/share/nginx/html/assets/config/config.json
    ports: 
      - ${APP_PORT}:80
    restart: unless-stopped