-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.dev.yml
More file actions
32 lines (30 loc) · 785 Bytes
/
compose.dev.yml
File metadata and controls
32 lines (30 loc) · 785 Bytes
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
services:
noone-server:
build:
context: .
dockerfile: noone-server/Dockerfile
environment:
SPRING_DATASOURCE_PASSWORD: secret
SPRING_DATASOURCE_URL: jdbc:postgresql://192.168.15.11:5432/mydb
SPRING_DATASOURCE_USERNAME: myuser
noone-web:
build:
context: ./noone-web
dockerfile: Dockerfile
depends_on:
- noone-server
environment:
HOST: 0.0.0.0
INTERNAL_API_BASE_URL: http://noone-server:8888/api
PORT: 3000
SESSION_SECRET: dev-session-secret-change-me
SESSION_COOKIE_SECURE: false
nginx:
image: nginx:1.29-alpine
depends_on:
- noone-web
- noone-server
ports:
- "80:80"
volumes:
- ./deploy/nginx/default.conf:/etc/nginx/conf.d/default.conf:ro