Initial commit of content.

This commit is contained in:
2021-01-13 11:25:45 -08:00
commit 9b8760fd34
67 changed files with 25486 additions and 0 deletions

24
docker-compose.yml Normal file
View File

@@ -0,0 +1,24 @@
version: "2"
services:
apostrophe:
container_name: apostrophe
restart: always
build: .
ports:
- "3000:3000"
links:
- mongo
volumes:
- ./data/uploads:/app/public/uploads
environment:
- APOS_MONGODB_URI=mongodb://mongo:27017/db
depends_on:
- mongo
mongo:
container_name: mongo
image: mongo
restart: always
volumes:
- ./data/db:/data/db
expose:
- "27017"