docker-compose.yml 382 B

12345678910111213141516
  1. services:
  2. nexus-client:
  3. image: nexus-client:latest
  4. container_name: nexus-client
  5. network_mode: host
  6. environment:
  7. - CLIENT_COUNT=${CLIENT_COUNT}
  8. volumes:
  9. - ./logs:/app/logs
  10. - ./nexus_client.txt:/app/nexus_client.txt
  11. restart: unless-stopped
  12. logging:
  13. driver: "json-file"
  14. options:
  15. max-size: "10m"
  16. max-file: "3"