From 1c64ec9d880b6a6c2bc517c97394310b4f4b43bc Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 3 May 2017 20:50:12 +0200 Subject: [PATCH] add non-working yml file with service/stack description --- tmp/docker-compose.yml | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 tmp/docker-compose.yml diff --git a/tmp/docker-compose.yml b/tmp/docker-compose.yml new file mode 100644 index 00000000..1c86dae9 --- /dev/null +++ b/tmp/docker-compose.yml @@ -0,0 +1,48 @@ +# this is a (failed) attempt at starting three containers with static IP +# addresses in an internal network +# +version: "3" +services: + stp: + image: osmo-stp-master + deploy: + mode: global + restart_policy: + condition: none + networks: + sigtran: + ipv4_address: 172.18.0.200 + + m3ua: + image: m3ua-test + deploy: + mode: global + restart_policy: + condition: none + depends_on: + - stp + networks: + sigtran: + ipv4_address: 172.18.0.2 + + sua: + image: sua-test + deploy: + mode: global + restart_policy: + condition: none + depends_on: + - stp + networks: + sigtran: + ipv4_address: 172.18.0.3 + +networks: + sigtran: + # this apparently was working in the past, but only overlay is + # supported now? + driver: bridge + ipam: + driver: default + config: + - subnet: 172.18.0.0/16