https://github.com/petrknap/foundryvtt
Dockerized Foundry Virtual Tabletop
https://github.com/petrknap/foundryvtt
docker-image foundryvtt game
Last synced: 2 months ago
JSON representation
Dockerized Foundry Virtual Tabletop
- Host: GitHub
- URL: https://github.com/petrknap/foundryvtt
- Owner: petrknap
- License: lgpl-3.0
- Created: 2023-05-30T17:19:01.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-25T09:33:32.000Z (over 1 year ago)
- Last Synced: 2025-01-21T14:11:57.631Z (4 months ago)
- Topics: docker-image, foundryvtt, game
- Language: Makefile
- Homepage: https://foundryvtt.com
- Size: 43.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# Dockerized [Foundry Virtual Tabletop]
This repository contains simple [makefile](./Makefile) to [dockerize](./Dockerfile) [Foundry Virtual Tabletop].
## How to dockerize it?
```bash
make docker-image
```It is required to have [Foundry Virtual Tabletop] downloaded in this folder.
The download link will be displayed on the console if needed.## How to use dockerized version?
```bash
make server # to run server on foreground
make server-daemon # to run server as daemon
make server-murder # to kill server
```For security reasons, please switch the server to HTTPS,
set the SSL certificate and key paths in the application configuration.You can issue a self-signed certificate using the command `make certificate`.
The certificate path will be `self-signed.crt` and key path will be `self-signed.key`.## How to back up / restore it?
It is recommended to **shut down the server** before backing up or restoring.
```bash
make server-backup # to back up server
make server-restore # to restore server
```You can also back up the server manually by copying the `data` directory somewhere else.
You can restore a manual backup by copying it back to the `data` directory.[Foundry Virtual Tabletop]:https://foundryvtt.com/
---
You can [support this project via donation](https://petrknap.github.io/donate.html).
The project is licensed under [the terms of the `LGPL-3.0-or-later`](./COPYING.LESSER).