diff options
| author | Joe Carstairs <me@joeac.net> | 2026-06-25 11:27:33 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-06-25 11:27:33 +0100 |
| commit | fbbc8d2d8b20c421d978e9b6060f05dca8de76d8 (patch) | |
| tree | f02184099f7c89f8e3e79f989e90fb0f3b07dfc5 /openrc/joeac.net | |
| parent | d27186a177fabc5680c8e419684550b7a68f3420 (diff) | |
Revert "adds --rm to podman-compose up command to remove containers after"
This reverts commit 812d59e4dd7d7755ceac6ff7286be1d72d0b56b8.
Diffstat (limited to 'openrc/joeac.net')
| -rwxr-xr-x | openrc/joeac.net | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/openrc/joeac.net b/openrc/joeac.net index bc536ee..83e9566 100755 --- a/openrc/joeac.net +++ b/openrc/joeac.net @@ -10,7 +10,6 @@ DOCKER_COMPOSE_UP_ARGS=${DOCKER_COMPOSE_UP_ARGS-"--no-build --no-recreate --no-d : ${COMPOSEFILE:="${SRCDIR}/compose.yml"} : ${MAKEFILE:="${SRCDIR}/Makefile"} COMPOSECMD="/usr/bin/podman-compose" -COMPOSESTARTARGS="--podman-run-args='--rm'" export COMPOSE_HTTP_TIMEOUT=300 description="Manage dockerservices defined in ${COMPOSEFILE}" @@ -33,7 +32,7 @@ configtest() { start() { configtest || return 1 ebegin "Starting ${SVCNAME}" - "${COMPOSECMD}" "${COMPOSESTARTARGS}" -f "${COMPOSEFILE}" up -d ${DOCKER_COMPOSE_UP_ARGS} + "${COMPOSECMD}" -f "${COMPOSEFILE}" up -d ${DOCKER_COMPOSE_UP_ARGS} eend $? } |
