services:1nebula:2image: motortruck1221/nebula:latest3container_name: nebula4build: .5restart: unless-stopped6ports:7# HOST:CONTAINER (DO NOT CHANGE THE CONTAINER PORT, UNLESS EDITED IN THE config.toml FILE)8- 8080:80809volumes:10- ./config.toml:/app/config.toml11nebula-2:12image: motortruck1221/nebula:9.1.413container_name: nebula14build: .15restart: unless-stopped16ports:17# HOST:CONTAINER (DO NOT CHANGE THE CONTAINER PORT, UNLESS EDITED IN THE config.toml FILE)18- 8080:808019volumes:20- ./config.toml:/app/config.toml2122# Uncomment the the below stuff to use POSTGRES!23# db:24# image: postgres25# restart: unless-stopped26# environment:27# POSTGRES_PASSWORD: password #CHANGE THIS28# POSTGRES_USER: username29# POSTGRES_DB: db30# volumes:31# - ./db:/var/lib/postgresql/data323334