department-of-veterans-affairs/vets-website

View on GitHub
.devcontainer/docker-compose.yml

Summary

Maintainability
Test Coverage
version: '3'
services:
  vets-website:
    build:
      context: .
      args:
        userid: ${UID}
    environment:
      API_URL: ${API_URL:-http://localhost:3000}
      WEB_HOST: ${WEB_HOST:-localhost}
      WEB_PORT: ${WEB_PORT:-3002}
    expose:
      - 3002
    image: vets-website:${IMAGE_TAG:-latest}
    ports:
      - 3001:3002
    restart: unless-stopped
    volumes:
      - .:/application
      - ../vagov-content:/vagov-content
      - ../content-build:/content-build
      - ../vets-api:/vets-api