Compare commits

..

No commits in common. "e3b140509dfc952669063422fe6d206cd0a5fa7e" and "1e363f6c667c8e04efdccf75baa8dc4fddc51c0f" have entirely different histories.

3 changed files with 20 additions and 2 deletions

5
.docker-compose.yml Normal file
View file

@ -0,0 +1,5 @@
services:
cms:
image: alliances-cms
ports:
- "1111:1111"

1
.gitignore vendored
View file

@ -1,6 +1,5 @@
node_modules
.env
.env.*
public
.manifest

14
docker-compose.yml Normal file
View 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