Questions tagged [docker]

The container software docker. https://www.docker.com

Docker is an open-source project that provides an additional layer of abstraction and automation of operating-system-level virtualization. While docker was born in the Linux world later versions are able to control Windows containers and Hyper-V virtual machines.

221 questions
0
votes
0 answers

ERROR: The Compose file './docker-compose.yml' is invalid because: Unsupported config option for services.networks: 'app'

I get This error when I execute I try to execute this command docker-compose up Below is my docker-compose.yml version: '3.4' services: backend: build: context: ./backend_app dockerfile: Dockerfile environment: DB_HOST:…
0
votes
0 answers

How do I create non-local volume in docker compose?

I'm experimenting with my fork of docker zfs plugin, to create separate filesystem for each volume. docker volume create -d zfs my_volume creates my_volume as expected, but version: "3.9" volumes: postgres_16: driver: zfs services: …