-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.local.yml
50 lines (46 loc) · 1019 Bytes
/
docker-compose.local.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
38
39
40
41
42
43
44
45
46
47
48
49
50
version: '3.8'
services:
postgres:
image: postgres:13
container_name: skrrrt_old_postgres
ports:
- 5432:5432
restart: unless-stopped
volumes:
- ./pgdata:/var/lib/postgresql/data
env_file:
- ./.env.development
iframely:
image: coloradocolby/iframely:latest
container_name: skrrrt_old_iframely
expose:
- 8061
restart: unless-stopped
volumes:
- ./iframely.config.js:/iframely/config.local.js
hasura:
image: hasura/graphql-engine:v2.10.1
container_name: skrrrt_old_hasura
ports:
- 8080:8080
depends_on:
- postgres
restart: unless-stopped
env_file:
- ./.env.development
caddy:
image: caddy:latest
container_name: skrrrt_old_caddy
restart: unless-stopped
ports:
- 80:80
- 443:443
- 8081:8081
- 8062:8062
volumes:
- ./Caddyfile.local:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
volumes:
caddy_data:
caddy_config: