From 37a169920ad46a55c956ad5c2bdb4fe367e2d56b Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Wed, 11 Mar 2026 19:24:05 +0000
Subject: [PATCH] Fix integration tests - debian container no longer provides ip cmd
---
config.json | 9 +++++----
1 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/config.json b/config.json
index 037faca..c3a46d7 100644
--- a/config.json
+++ b/config.json
@@ -2,16 +2,17 @@
"description": "pyIPAM - IPAM driver in Python",
"documentation": "https://github.com/jacekkow/docker-plugin-pyipam",
"workdir": "/usr/src/app",
- "entrypoint": ["uwsgi", "--ini", "uwsgi.ini"],
+ "entrypoint": ["./venv/bin/python", "./run.py"],
"env": [
{
+ "name": "ENVIRONMENT",
+ "value": "production"
+ },
+ {
"name": "HOME",
"value": "/usr/src/app"
}
],
- "network": {
- "type": "none"
- },
"interface" : {
"types": ["docker.ipamdriver/1.0"],
"socket": "pyipam.sock"
--
Gitblit v1.10.0