services:1nebula:2image: ghcr.io/nebulaservices/nebula:latest3container_name: nebula4restart: unless-stopped5ports:6# HOST:CONTAINER (DO NOT CHANGE THE CONTAINER PORT, UNLESS EDITED IN THE config.toml FILE)7- 8080:80808volumes:9- ./config.toml:/app/config.toml10# Uncomment the the below stuff to use POSTGRES!11# db:12# image: postgres13# restart: unless-stopped14# environment:15# POSTGRES_PASSWORD: password #CHANGE THIS16# POSTGRES_USER: username17# POSTGRES_DB: db18# volumes:19# - ./db:/var/lib/postgresql/data202122