Compare commits
No commits in common. "e3b140509dfc952669063422fe6d206cd0a5fa7e" and "1e363f6c667c8e04efdccf75baa8dc4fddc51c0f" have entirely different histories.
e3b140509d
...
1e363f6c66
3 changed files with 20 additions and 2 deletions
5
.docker-compose.yml
Normal file
5
.docker-compose.yml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
services:
|
||||
cms:
|
||||
image: alliances-cms
|
||||
ports:
|
||||
- "1111:1111"
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,6 +1,5 @@
|
|||
|
||||
node_modules
|
||||
.env
|
||||
.env.*
|
||||
public
|
||||
.manifest
|
||||
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
services:
|
||||
cms:
|
||||
build: .
|
||||
image: alliances-cms
|
||||
ports:
|
||||
- "1111:1111"
|
||||
environment:
|
||||
- NODE_ENV=production
|
||||
- TOKEN_SECRET_KEY=${TOKEN_SECRET_KEY}
|
||||
- DB_PATH=${DB_PATH}
|
||||
env_file: .env.production
|
||||
volumes:
|
||||
- ./.manifest:/app/.manifest
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue