Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
NebulaServices
GitHub Repository: NebulaServices/Nebula
Path: blob/main/docker-compose.yml
976 views
1
services:
2
nebula:
3
image: ghcr.io/nebulaservices/nebula:latest
4
container_name: nebula
5
restart: unless-stopped
6
ports:
7
# HOST:CONTAINER (DO NOT CHANGE THE CONTAINER PORT, UNLESS EDITED IN THE config.toml FILE)
8
- 8080:8080
9
volumes:
10
- ./config.toml:/app/config.toml
11
# Uncomment the the below stuff to use POSTGRES!
12
# db:
13
# image: postgres
14
# restart: unless-stopped
15
# environment:
16
# POSTGRES_PASSWORD: password #CHANGE THIS
17
# POSTGRES_USER: username
18
# POSTGRES_DB: db
19
# volumes:
20
# - ./db:/var/lib/postgresql/data
21
22