-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
73 lines (69 loc) · 1.73 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
services:
client:
build:
context: ./ # path of root directory; don't change.
dockerfile: ./client/Dockerfile # path relative to root directory.
restart: "no"
ports:
- 127.0.0.1:3000:3000
networks:
- example-network
depends_on:
- server
server:
build:
context: ./ # path of root directory; don't change.
dockerfile: ./server/Dockerfile # path relative to root directory.
restart: "no"
ports:
- 127.0.0.1:8080:8080
environment:
POSTGRES_HOST: ${POSTGRES_HOST:?error}
POSTGRES_DB: ${POSTGRES_DB:?error}
POSTGRES_USER: ${POSTGRES_USER:?error}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?error}
networks:
- example-network
depends_on:
- postgres
# https://hub.docker.com/_/postgres/
postgres:
image: postgres:16
restart: unless-stopped
ports:
- 127.0.0.1:5432:5432
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
volumes:
- ./postgres/entrypoint:/docker-entrypoint-initdb.d
- ./postgres/data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready --username=postgres"]
interval: 5s
timeout: 3s
retries: 3
networks:
- example-network
caddy:
image: caddy:2
restart: unless-stopped
ports:
- 80:80
- 443:443
- 443:443/udp
volumes:
- ./caddy/config:/config
- ./caddy/data:/data
- ./caddy/logs:/var/log/caddy/
- ./caddy/Caddyfile:/etc/caddy/Caddyfile
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- example-network
depends_on:
- server
networks:
example-network:
name: example-network