updated readme
This commit is contained in:
parent
a27acf1ad3
commit
9b59b8ea01
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
public/
|
||||
test/
|
||||
data/
|
||||
.env
|
29
README.md
Normal file
29
README.md
Normal file
@ -0,0 +1,29 @@
|
||||
## Okiba Docker
|
||||
|
||||
|
||||
```yml
|
||||
services:
|
||||
#########################
|
||||
okiba:
|
||||
hostname: okiba
|
||||
image: git.shihaam.dev/dockerfiles/okiba-org-docker
|
||||
volumes:
|
||||
- $PWD/logs/npm:/root/.npm/_logs/
|
||||
- $PWD/data/:/root/okiba-org-backend/data
|
||||
- $PWD/.env:root/okiba-org-backend/.env
|
||||
ports:
|
||||
- 3000:3000
|
||||
restart: always
|
||||
#########################
|
||||
postgres:
|
||||
hostname: okiba-db
|
||||
image: postgres:13-alpine
|
||||
volumes:
|
||||
- $PWD/db:/var/lib/postgresql/data
|
||||
environment:
|
||||
- POSTGRES_DB=okiba
|
||||
- POSTGRES_USER=okiba
|
||||
- POSTGRES_PASSWORD=okiba
|
||||
restart: unless-stopped
|
||||
|
||||
```
|
Loading…
x
Reference in New Issue
Block a user