Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Dockerfile build issues #4

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down
8 changes: 5 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down