Compare commits
2 commits
7d7611e94d
...
62a399f26b
Author | SHA1 | Date | |
---|---|---|---|
62a399f26b | |||
df57b56bfa |
3 changed files with 24 additions and 18 deletions
19
compose/linkwarden.yml
Normal file
19
compose/linkwarden.yml
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
services:
|
||||||
|
postgres:
|
||||||
|
image: postgres:16-alpine
|
||||||
|
env_file: stack.env
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_DIR}/pgdata:/var/lib/postgresql/data
|
||||||
|
linkwarden:
|
||||||
|
env_file: stack.env
|
||||||
|
environment:
|
||||||
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
||||||
|
restart: always
|
||||||
|
image: ghcr.io/linkwarden/linkwarden:latest
|
||||||
|
ports:
|
||||||
|
- 3445:3000
|
||||||
|
volumes:
|
||||||
|
- ${ROOT_DIR}/data:/data/data
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
|
@ -1,18 +0,0 @@
|
||||||
services:
|
|
||||||
nextcloud-aio-mastercontainer:
|
|
||||||
image: nextcloud/all-in-one:latest
|
|
||||||
init: true
|
|
||||||
restart: always
|
|
||||||
container_name: nextcloud-aio-mastercontainer # This is required and cannot be changed
|
|
||||||
volumes:
|
|
||||||
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This is required for backups
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro # Required for container management
|
|
||||||
network_mode: bridge
|
|
||||||
environment:
|
|
||||||
APACHE_PORT: ${APACHE_PORT}
|
|
||||||
ports:
|
|
||||||
- ${APP_PORT}:8080
|
|
||||||
- ${APP_PORT_HTTPS}:443
|
|
||||||
volumes:
|
|
||||||
nextcloud_aio_mastercontainer:
|
|
||||||
name: nextcloud_aio_mastercontainer
|
|
5
compose/pipingserver.yml
Normal file
5
compose/pipingserver.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
services:
|
||||||
|
piping-server-pkg:
|
||||||
|
image: nwtgck/piping-server
|
||||||
|
ports:
|
||||||
|
- 8282:8080
|
Loading…
Add table
Reference in a new issue