Skip to content

Commit c2a6311

Browse files
committed
somehow Planka's docker compose file went missing
1 parent beb68a1 commit c2a6311

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

planka/docker-compose.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
services:
2+
planka:
3+
image: ghcr.io/plankanban/planka:latest
4+
container_name: planka
5+
hostname: planka
6+
restart: unless-stopped
7+
networks:
8+
- proxy
9+
- database
10+
volumes:
11+
- /opt/lib/planka/user-avatars:/app/public/user-avatars
12+
- /opt/lib/planka/project-background-images:/app/public/project-background-images
13+
- /opt/lib/planka/attachments:/app/private/attachments
14+
- /opt/log/planka:/app/logs
15+
# ports:
16+
# - 3000:1337
17+
env_file:
18+
- .env
19+
healthcheck:
20+
test: ["CMD-SHELL", "pg_isready -U postgres -d planka"]
21+
interval: 10s
22+
timeout: 5s
23+
retries: 5
24+
networks:
25+
proxy:
26+
external: true
27+
name: nginx-proxy-net
28+
database:
29+
external: true
30+
name: postgres-net

0 commit comments

Comments
 (0)