mirror of
https://github.com/lemeow125/Notes.git
synced 2025-04-20 08:51:26 +08:00
Add docker-compose.yml
This commit is contained in:
parent
68d0bc3792
commit
0a1d7ac72a
3 changed files with 9 additions and 1 deletions
1
.env.sample
Normal file
1
.env.sample
Normal file
|
@ -0,0 +1 @@
|
||||||
|
PORT=9001
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -31,4 +31,5 @@ npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
yarn-error.log*
|
yarn-error.log*
|
||||||
|
|
||||||
.vscode
|
.vscode
|
||||||
|
.env
|
6
docker-compose.yml
Normal file
6
docker-compose.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
build: .
|
||||||
|
env_file: .env
|
||||||
|
ports:
|
||||||
|
- "${PORT}:80"
|
Loading…
Add table
Reference in a new issue