-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.deploy.yml
More file actions
59 lines (55 loc) · 1.39 KB
/
docker-compose.deploy.yml
File metadata and controls
59 lines (55 loc) · 1.39 KB
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
version: "3"
services:
caddy:
image: caddy:2
restart: unless-stopped
ports:
- "80:80"
- "443:443"
- "443:443/udp"
volumes:
- $PWD/appdata/Caddyfile:/etc/caddy/Caddyfile
- $PWD/appdata/data:/data
- $PWD/appdata/config:/config
- $PWD/appdata/logs:/var/log/caddy
chopshop_signin:
container_name: chopshop_signin
image: 166first/signinwebapp:latest
depends_on:
- postgres
ports:
- "8100:8100/tcp"
# Volumes store your data between container upgrades
volumes:
- './appdata:/appdata'
restart: unless-stopped
environment:
- FLASK_SECRET_KEY
- CSSIGNIN_CONFIG=/appdata/cssignin.yaml
- LANG=en_US.UTF-8
postgres:
container_name: chopshop_db
image: postgres:16
restart: unless-stopped
environment:
- POSTGRES_PASSWORD
ports:
- "5432:5432"
volumes:
- ./appdata/db:/var/lib/postgresql/data
kanboard:
depends_on:
- postgres
build:
context: ./kanboard
dockerfile: ./kanboard-Dockerfile
ports:
- "8080:80"
volumes:
- ./appdata/kanboard/data:/var/www/app/data
- ./appdata/kanboard/plugins:/var/www/app/plugins
- ./appdata/config.php:/var/www/app/data/config.php
environment:
- DATABASE_URL=postgres://postgres:mysecretpassword@postgres/kanboard
- LOG_DRIVER=stdout
- DEBUG=true