summaryrefslogtreecommitdiff
path: root/test/compose
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2021-07-09 10:07:39 -0500
committerBrent Baude <bbaude@redhat.com>2021-07-09 10:10:04 -0500
commitdaebdf3859ad3c912b068ea6b48e49f23c9ed0c2 (patch)
treed0babe6ec89af6006f4645d1f9e9c61bca97689f /test/compose
parent43abe006a3d8026b6cc7deace0a29a08a5d4bc08 (diff)
downloadpodman-daebdf3859ad3c912b068ea6b48e49f23c9ed0c2.tar.gz
podman-daebdf3859ad3c912b068ea6b48e49f23c9ed0c2.tar.bz2
podman-daebdf3859ad3c912b068ea6b48e49f23c9ed0c2.zip
Add container config to compat image inspect
With docker-compose, there is a use case where you can `docker-compose up -d`, then change a file like docker-compose.yml and run up again. This requires a ContainerConfig with at least Volumes be populated in the inspect data. This PR adds just that. Fixes: #10795 Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/compose')
-rw-r--r--test/compose/uptwice/Dockerfile2
-rw-r--r--test/compose/uptwice/docker-compose.yml5
-rw-r--r--test/compose/uptwice/tests.sh4
3 files changed, 11 insertions, 0 deletions
diff --git a/test/compose/uptwice/Dockerfile b/test/compose/uptwice/Dockerfile
new file mode 100644
index 000000000..b993af04d
--- /dev/null
+++ b/test/compose/uptwice/Dockerfile
@@ -0,0 +1,2 @@
+FROM alpine
+WORKDIR /app
diff --git a/test/compose/uptwice/docker-compose.yml b/test/compose/uptwice/docker-compose.yml
new file mode 100644
index 000000000..e06f9e554
--- /dev/null
+++ b/test/compose/uptwice/docker-compose.yml
@@ -0,0 +1,5 @@
+version: '3'
+services:
+ app:
+ build: .
+ command: sleep 10002
diff --git a/test/compose/uptwice/tests.sh b/test/compose/uptwice/tests.sh
new file mode 100644
index 000000000..291694d83
--- /dev/null
+++ b/test/compose/uptwice/tests.sh
@@ -0,0 +1,4 @@
+# -*- bash -*-
+
+sed -i -e 's/10001/10002/' docker-compose.yml
+docker-compose up -d