1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
services: app: container_name: whois-app build: context: . target: app expose: - "3000" volumes: - ./data:/app/data environment: - NODE_ENV=production - DB_PATH=/app/data/whois.db restart: unless-stopped networks: - web networks: web: external: true name: web