pisco-docker-documentation
Version:
Pisco Docker documentation first examples
21 lines (19 loc) • 366 B
YAML
version: "3"
services:
web:
# replace username/repo:tag with your name and image details
image: apecr/get-started:part2
deploy:
replicas: 7
resources:
limits:
cpus: "0.1"
memory: 50M
restart_policy:
condition: on-failure
ports:
- "80:80"
networks:
- webnet
networks:
webnet: