- Ensure Docker and Docker Compose are installed on your system.
- Navigate to the project directory.
- Create
.env
from the example provided by us.env_example
cp .env_example .env
and set the necessary environmental variables:
LNBITS_ADMIN_KEY = ""
LNBITS_WALLET_ID = ""
LNBITS_HOST = "https://demo.lnbits.com/"
NOSTDRESS_DOMAIN = "nostrdvm.com"
- You can also change the name of the container in the
docker-compose.yml
file.
services: # Define the services
dvm: # Name of the service
container_name: amyamygo
- Run the following command:
# in foreground
docker compose up --build
# in background
docker compose up --build -d
- For updating the relay, run the following command:
git pull
docker compose build --no-cache
# in foreground
docker compose up
# in background
docker compose up -d
This will build the Docker image and start the amyamygo
service as defined in the docker-compose.yml
file.
This project is licensed under the MIT License.