docker-compose.yml 327 B

123456789101112131415
  1. services:
  2. nexus-client:
  3. build: .
  4. container_name: nexus-client
  5. environment:
  6. - CLIENT_COUNT=3
  7. volumes:
  8. - ./logs:/app/logs
  9. - ./nexus_client.txt:/app/nexus_client.txt
  10. restart: unless-stopped
  11. logging:
  12. driver: "json-file"
  13. options:
  14. max-size: "10m"
  15. max-file: "3"