-
Notifications
You must be signed in to change notification settings - Fork 307
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
31 lines (28 loc) · 1.01 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
31 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#####################################################################
## ##
## Lowcoder all-in-one compose file. ##
## ##
## To run: ##
## docker compose up -d ##
## ##
#####################################################################
services:
##
## Start Lowcoder (all-in-one)
##
lowcoder-all-in-one:
image: lowcoderorg/lowcoder-ce:latest
container_name: lowcoder
env_file:
- path: ./default.env
required: true
- path: ./override.env
required: false
ports:
- "3000:3000"
- "3443:3443"
# - "27017:27017"
volumes:
- ./lowcoder-stacks:/lowcoder-stacks
- ./lowcoder-stacks/assets:/lowcoder/assets
restart: unless-stopped