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
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -32,3 +32,4 @@ yarn-debug.log*
|
|||
yarn-error.log*
|
||||
|
||||
.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