Open gonzalloe opened 2 years ago
Hi @gonzalloe, I've tested with just a portion of your original config:
version: '3'
services:
#Wine
wine:
image: scottyhardy/docker-wine
container_name: wine_PTV1
tty: true
restart: always
entrypoint: /bin/bash
working_dir: /var/www
I was able to run wine without any issues:
Scotts-MacBook-Pro:test scottyhardy$ docker-compose up -d
Starting wine_PTV1 ... done
Scotts-MacBook-Pro:test scottyhardy$ docker exec -it wine_PTV1 /bin/bash
root@35ab2d3eee40:/var/www# wine
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit
root@35ab2d3eee40:/var/www# wine --version
wine-6.0.2
I'm not sure if you were perhaps having issues with the particular build of the docker-wine image. I've recently made some updates that may have potentially fixed your problem, so would you mind testing again and let me know if you're still having issues?
Sorry for late respond, the issue was solved after I reinstall my server OS. I guess it was some OS installation issues making Wine not working.
Thanks anyway.
Hi, I was trying to build a stack of containers. One of them is the WINE container built using
scottyhardy/docker-wine
. Everything work great. But when I /bin/bash inside the WINE container, I can't start or run wine:bash: /usr/bin/wine: No such file or directory
. The strange thing is wine64 work fine there:ls /usr/bin | grep wine
wine is installed inside the container, but still file not found:Here is my docker-compose.yaml:
Is there any configuration steps I missed? or the env setup needed?