mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-05-26 15:16:14 +00:00
16 lines
394 B
Markdown
16 lines
394 B
Markdown
# Standalone GEDCOM Container Example
|
|
|
|
This example builds a self-contained image that hosts a single `.ged` file directly (no photos).
|
|
|
|
## Instructions
|
|
|
|
1. Put your GEDCOM file in this directory and name it `family.ged`.
|
|
2. Build your custom container:
|
|
```bash
|
|
docker build -t my-simple-tree .
|
|
```
|
|
3. Run your container:
|
|
```bash
|
|
docker run -d -p 8080:8080 my-simple-tree
|
|
```
|