From 1da3bcc1b30020eed94c206fcfeff6a7f27cefeb Mon Sep 17 00:00:00 2001 From: Josef Date: Fri, 20 May 2022 19:18:49 -0400 Subject: [PATCH 1/2] Fix: Pinning ubuntu version and adding env vars to fix tzdata's interactive prompt --- dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index ed80809..b771923 100644 --- a/dockerfile +++ b/dockerfile @@ -1,4 +1,7 @@ -FROM ubuntu +FROM ubuntu:20.04 + +ENV DEBIAN_FRONTEND="noninteractive" +ENV TZ="America/New_York" RUN dpkg --add-architecture i386 \ && apt update \ From 40d6bae9a6a3d52109edab72587a110285395cb4 Mon Sep 17 00:00:00 2001 From: Josef Date: Fri, 20 May 2022 19:20:33 -0400 Subject: [PATCH 2/2] Fix: Updated README for Dockerfile changes --- readme.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index b95d207..e07f10b 100644 --- a/readme.md +++ b/readme.md @@ -14,12 +14,14 @@ cd V-Rising-Docker-Linux 4. Move all the files in /settings/ to some location. -4. Build the image +5. Update `ENV TZ="America/New_York"` in `dockerfile` to [your timezone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) + +6. Build the image sudo docker build . -t vrising:latest -5. Modify docker compose, set a path for where you want your saves. Set the save and settings directories +7. Modify docker compose, set a path for where you want your saves. Set the save and settings directories -6. compose +8. compose sudo docker-compose up -d Really messy setup but this was the only way I could figure out how to work it lol. Never used Wine before. Hope for a native linux server soon!