adds user accounts, service requests, dashboard, admin panel, better layout, db+altcha+auth support
This commit is contained in:
parent
dfbc3cade9
commit
0043a5bf3c
40 changed files with 3981 additions and 188 deletions
19
examples/docker-compose.dev.yml
Normal file
19
examples/docker-compose.dev.yml
Normal file
|
@ -0,0 +1,19 @@
|
|||
services:
|
||||
pontus:
|
||||
build: .
|
||||
container_name: pontus
|
||||
ports:
|
||||
- 3000:3000
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
postgres:
|
||||
image: postgres:17
|
||||
container_name: pontus-postgres
|
||||
volumes:
|
||||
- ./postgres:/var/lib/postgresql/data
|
||||
ports:
|
||||
- 5432:5432
|
||||
environment:
|
||||
- POSTGRES_USER=pontus
|
||||
- POSTGRES_PASSWORD=changeme
|
||||
- POSTGRES_DB=pontus
|
|
@ -3,6 +3,15 @@ services:
|
|||
build: .
|
||||
container_name: pontus
|
||||
ports:
|
||||
- 3000:3000
|
||||
- 3000:3000 # Comment this out if you are using a reverse proxy
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- NODE_ENV=production
|
||||
postgres:
|
||||
image: postgres:17
|
||||
container_name: pontus-postgres
|
||||
volumes:
|
||||
- ./postgres:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_USER=pontus
|
||||
- POSTGRES_PASSWORD=changeme
|
||||
- POSTGRES_DB=pontus
|
Loading…
Add table
Add a link
Reference in a new issue