Docker - Web UI
P2G provides a website user interface. Some key features include:
- Configure your settings via a user interface
- Trigger a sync from any browser (your computer, your phone, etc.)
- Sync service can still run in the background, syncing periodically
- OpenApi for custom scripts and workflows
⬇️ Install
Pre-requisite: You have either docker-compose
or Docker Desktop
installed
- Create a folder named
p2g-webui
- Inside this folder create docker-compose.yaml
- Within this same directory, also create a folder called
config
- Create two more folders within the
config
directory:api
andwebui
- Within the
api
folder, create configuration.local.json - Within the
webui
folder, also create a configuration.local.json with slightly different content - Your final directory structure should look similar to this.
- Create two more folders within the
- Open a terminal in the
p2g-webui
folder - Run:
docker compose pull && docker compose up -d
- This will pull the containers and start them up running in the background
- You can close the terminal at this time
- Open a browser and navigate to
http://localhost:8002
Any logs or generated files will be available in the output
directory. Additionally, you can learn more about customizing your configuration over in the Configuration Section
Configuration
You can learn more about customizing your configuration over in the Configuration Section.
If you are migrating to the Web UI for the first time you will need to reconfigure most of your settings using the user interface. The only settings that are carried over and still configured via the configuration file are the ones related to Observability
.
To stop P2G
- You can use Docker Desktop application to kill the containers
- Or, you can open a terminal in the
p2g-webui
folder- Run:
docker compose down
- Run:
Open Api
To access the Open API spec for P2G you will need to expose port 8080
on the Api docker container. The open API spec will be available at http://localhost:8001/swagger
.
⬆️ Updating
- Open a terminal in the
p2g-webui
folder- Run:
docker compose pull && docker compose up -d
- Run:
❌ Uninstalling
- You can use Docker Desktop application to kill the containers and delete the images
- Or, you can open a terminal in the
p2g-webui
folder- Run:
docker compose down && docker compose rm
- Run:
- Finally, delete the
p2g-webui
folder
Warning
This is non-recoverable. Any and all customizations will be lost. You can re-install P2G again by starting over.
#️⃣ Changing Versions
- Find the image tags you want from the releases page
- Update the docker-compose.yaml containers to reference those tags.
- Restart the containers
- Run:
docker compose down && docker compose up -d
- Run:
Warning
Attempting to use configuration or data from a later version of P2G with an older version is not guaranteed to work. You may need to reconfigure your instance.
👪 Multiple Users
To setup P2G for an additional user, simply download P2G run through the install process again in a new folder named <PersonsName>-P2G
. You will also need to update the docker-compose.yaml
file to use unique names and ports for the containers.
For this setup, tt is recommended to place P2G behind a reverse-proxy with authentication. However, that is outside the scope of this documentation.