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