Skip to content

Commit

Permalink
Fixed force_pull boolean unmarshal error
Browse files Browse the repository at this point in the history
  • Loading branch information
jbgomond authored and sebthom committed Oct 1, 2023
1 parent e019071 commit 816b21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image/config.template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ container:
# If it's "-", act_runner will find an available docker host automatically, but the docker host won't be mounted to the job containers and service containers.
# If it's not empty or "-", the specified docker host will be used. An error will be returned if it doesn't work.
docker_host: '${GITEA_RUNNER_JOB_CONTAINER_DOCKER_HOST:-}'
force_pull: '${GITEA_RUNNER_JOB_CONTAINER_FORCE_PULL:-false}'
force_pull: ${GITEA_RUNNER_JOB_CONTAINER_FORCE_PULL:-false}

host:
# The parent directory of a job's working directory.
Expand Down

0 comments on commit 816b21f

Please sign in to comment.