Skip to content

Commit cd0294c

Browse files
committedSep 23, 2024
add linkwarden
1 parent 3e63d78 commit cd0294c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
 

‎docker/arm/docker-compose.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,28 @@ services:
161161
networks:
162162
gitea_main:
163163
ipv4_address: 172.25.0.25
164+
## Linkwarden
165+
postgres:
166+
image: postgres:16-alpine
167+
env_file: .env
168+
restart: always
169+
volumes:
170+
- /docker/appdata/linkwarden/pgdata:/var/lib/postgresql/data
171+
linkwarden:
172+
env_file: .env
173+
environment:
174+
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
175+
restart: always
176+
container_name: linkwarden
177+
image: ghcr.io/linkwarden/linkwarden:v2.7.1
178+
networks:
179+
- gitea_main
180+
ports:
181+
- 3005:3000
182+
volumes:
183+
- /docker/appdata/linkwarden/data:/data/data
184+
depends_on:
185+
- postgres
164186

165187
syncthing:
166188
image: ghcr.io/linuxserver/syncthing@sha256:f80ba28cd9597b38a8f25ce1c5097aa92bb08d34a684286e759a90edcd5db617

0 commit comments

Comments
 (0)
Please sign in to comment.