indrasaputra/url-shortener

View on GitHub
docker-compose.yaml

Summary

Maintainability
Test Coverage
version: '3'

services:
  server:
    image: aptx-server:latest
    env_file:
      - .env
    ports:
      - 8080:8080
      - 8081:8081
    networks:
      - aptx

  prometheus:
    image: prom/prometheus:v2.26.0
    ports:
      - 9090:9090
    volumes:
      - ${PWD}/infrastructure/prometheus.yml:/etc/prometheus/prometheus.yml
    networks:
      - aptx

networks:
  aptx: