Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eriktonon/4a8c26168a3e70a3531e63f51f6de0b9 to your computer and use it in GitHub Desktop.
Save eriktonon/4a8c26168a3e70a3531e63f51f6de0b9 to your computer and use it in GitHub Desktop.
docker-compose base swarm
version: '3'
services:
web:
image: eriktonon/python3_dlib_face_reco
deploy:
replicas: 5
resources:
limits:
cpus: "9.9"
memory: 2048M
restart_policy:
condition: on-failure
volumes:
- .:/app
ports:
- "5000:5000"
networks:
- webnet
networks:
webnet:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment