-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
37 lines (34 loc) · 1.04 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: '3'
services:
ghost:
image: ghost:2.1
container_name: thesignal-ghost-container
volumes:
- ./content:/var/lib/ghost/content
- ./logs:/var/lib/ghost/content/logs
- ./src:/var/lib/ghost/content/themes/thesignal
- ./style/static:/var/lib/ghost/content/themes/thesignal/assets/style
ports:
- "4001:2368"
environment:
NODE_ENV: development
# - NPM_CONFIG_LOGLEVEL=debug
database__client: sqlite3
database__connection__filename: "/var/lib/ghost/content/data/ghost.db"
url: "http://thesign.al/"
static:
image: nginx:1.13.8
container_name: thesignal-static-server-container
volumes:
- ./style:/var/www/style
- ./configs/default.conf:/etc/nginx/conf.d/default.conf
ports:
- "4002:80"
manual-builder:
image: linzhiq/astrum:latest
container_name: thesignal-style-manual-builder-container
user: root
working_dir: /home/
volumes:
- ./style/astrum-config.json:/home/astrum-config.json
- ./style/manual:/home/html