-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (52 loc) · 1.21 KB
/
docker-compose.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: nebulant
services:
nginx:
container_name: nebulant_nginx_builder
build:
context: docker/nginx
image: develatio/nebulant_nginx_builder
ports:
- 80:80
- 443:443
networks:
- nebulant-lan
builder:
container_name: nebulant_builder
build:
context: .
dockerfile: Dockerfile
image: develatio/nebulant_builder
stdin_open: true
tty: true
volumes:
- ./.env:/code/.env/
- ./dist:/code/dist/
- ./packages:/code/packages/
- ./public:/code/public/
- ./src:/code/src/
- ./vitest.config.mjs:/code/vitest.config.mjs
- ./biome.json:/code/biome.json
- ./esbuild:/code/esbuild
- ./esbuild.mjs:/code/esbuild.mjs
- ./jsconfig.json:/code/jsconfig.json
- ./package.json:/code/package.json
- ./yarn.lock:/code/yarn.lock
- ./tools:/code/tools/
ports:
- 8080:8080
networks:
- nebulant-lan
#jointjs:
# platform: linux/amd64
# container_name: jointjs_dev_env
# build:
# context: .
# dockerfile: Dockerfile_jointjs
# volumes:
# - ./jointjs:/code/
# ports:
# - 8080:8080
networks:
nebulant-lan:
name: nebulant-lan
external: true