Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://github.com/alinmear/docker-conanexiles and https://hub.docker.com/r/alinmear/docker-conanexiles/
Thanks, certainly gonna test that out :D thanks for that!
wine: Call from 0x7b44aadc to unimplemented function msvcp140.dll
Anyone else getting this?
1. Setup docker if not already done
Ubuntu:
sudo apt-get update && sudo apt-get install -y docker.io docker-compose
Fedora:
sudo dnf install -y docker docker-compose
sudo systemctl enable docker
sudo systemctl start docker
2. Create a docker-compose file (check the README: https://github.com/alinmear/docker-conanexiles )
mkdir -p ~/my-docker-compose-project/docker-conanexiles
cd ~/my-docker-compose-project/docker-conanexiles
cat > docker-compose.yml <<EOF
version: '2'
services:
conanexiles0:
image: alinmear/docker-conanexiles:latest
restart: always
environment:
- "CONANEXILES_ServerSettings_ServerSettings_AdminPassword=ThanksForThisSmartSolution"
- "CONANEXILES_Engine_OnlineSubSystemSteam_ServerName='My Cool Server'"
- "CONANEXILES_Engine_OnlineSubSystemSteam_ServerPassword=MySecret"
ports:
- 7777:7777/udp
- 7778:7778/udp
- 27015:27015/udp
volumes:
- data:/conanexiles
volumes:
data:
driver: local
EOF
3. Start the container project
sudo docker-compose up
# or daemon mode for background
sudo docker-compose up -d
NOTE:
- volumes creates a docker volume (/var/lib/docker/volumes)
- You can also mount a folder directly, then you should change the volumes def within the services part
...
volumes:
- /my/path/where/i/want/my/exiles/folder/to/be:/conanexiles
...
It's also possible it's just taking it's own sweet time populating into the list. I don't know if you tried searching it, but you may have to.