Created
July 5, 2018 17:17
-
-
Save marcelo-ochoa/a929680d2d92b56406996b81b6dafcbf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.2' | |
volumes: | |
dbdata: | |
driver: local | |
driver_opts: | |
type: nfs | |
o: addr=10.1.253.110,rw,intr,hard,timeo=600,wsize=32768,rsize=32768,vers=4,tcp | |
device: ":/dbdata/test" | |
services: | |
test: | |
image: oracle/orion:12.2.0.1 | |
command: /usr/lib/oracle/12.2/client64/bin/orion -run simple -testname firsttest -hugenotneeded | |
volumes: | |
- dbdata:/home | |
deploy: | |
mode: replicated | |
replicas: 0 | |
placement: | |
constraints: | |
- node.labels.interconnect == si | |
restart_policy: | |
condition: none |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment