mirror of
https://github.com/docker/compose.git
synced 2026-07-11 10:44:06 +00:00
22 lines
366 B
YAML
22 lines
366 B
YAML
version: '3.5'
|
|
services:
|
|
foo:
|
|
image: alpine:3.7
|
|
command: /bin/true
|
|
deploy:
|
|
replicas: 3
|
|
restart_policy:
|
|
condition: any
|
|
max_attempts: 7
|
|
resources:
|
|
limits:
|
|
memory: 300M
|
|
cpus: '0.7'
|
|
reservations:
|
|
memory: 100M
|
|
volumes:
|
|
- foo:/bar
|
|
|
|
volumes:
|
|
foo:
|
|
driver: default
|