Docker warnings #522

Closed
opened 2026-01-13 09:43:21 +00:00 by mpeltriaux · 2 comments
Owner

Status quo

The currently used syntax of docker-compose on the Docker branch is still based on an earlier version of docker (compose). On every use (e.g. on the staging server) we get some warnings, which should be handled at some point:

WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. 
WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. 
WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. 
WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. 
WARN[0000] /.../konova/docker-compose.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion 
WARN[0000] networks.default: external.name is deprecated. Please set name and external: true 
WARN[0000] networks.efis: external.name is deprecated. Please set name and external: true 

# Status quo The currently used syntax of docker-compose on the `Docker` branch is still based on an earlier version of docker (compose). On every use (e.g. on the staging server) we get some warnings, which should be handled at some point: ```bash WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. WARN[0000] /.../konova/docker-compose.yml: the attribute `version` is obsolete, it will be ignored, please remove it to avoid potential confusion WARN[0000] networks.default: external.name is deprecated. Please set name and external: true WARN[0000] networks.efis: external.name is deprecated. Please set name and external: true ```
mpeltriaux added the enhancement label 2026-01-13 09:43:21 +00:00
mpeltriaux self-assigned this 2026-01-13 09:43:21 +00:00
Author
Owner
WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. 

Could be resolved. This was not a real variable but rather a wrongly parsed part of a value of another variable on the environment file .env where

var = ...$q6bsox...

would be evaluated into a bash-syntax variable via $ prefix.

```bash WARN[0000] The "q6bsox" variable is not set. Defaulting to a blank string. ``` Could be resolved. This was not a real variable but rather a wrongly parsed part of a value of another variable on the environment file `.env` where ```bash var = ...$q6bsox... ``` would be evaluated into a bash-syntax variable via `$` prefix.
Author
Owner

Warnings have been fixed in e2f8fc9c6d and should not pop up on next build

Warnings have been fixed in https://git.naturschutz.rlp.de/IT-Naturschutz/konova/commit/e2f8fc9c6d2c26292eb62fea62984cd8cb5693de and should not pop up on next build
Sign in to join this conversation.