How to send command to server stdin in a docker image
I have a game server that I'm running in a docker image. If you send 'status' to the server stdin it will send the status of the server to it's stdout. I'm trying to find a way to send 'status'…
I have a game server that I'm running in a docker image. If you send 'status' to the server stdin it will send the status of the server to it's stdout. I'm trying to find a way to send 'status'…
This is my docker-compose.yml version: "3" services: db: build: context: db volumes: - donazioni-vol:/var/lib/mysql env_file: - config.env generatore: build: context: generatore env_file: - config.env depends_on: - db volumes: donazioni-vol: This is my config.env file: MYSQL_USER=dockerdev MYSQL_PASSWORD=topolino MYSQL_ROOT_PASSWORD=topolino MYSQL_DATABASE=solidarieta This is…
I am pretty new to Great Expectations (GX) and very new to Docker, and now I am trying to combine the two. I can get a Docker image to build just fine, but when I try to run a container,…