mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2026-05-04 16:39:50 +02:00
Compare commits
9 Commits
3c7126c903
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 6e02b093e5 | |||
| d58e0252b0 | |||
| 59b29b237b | |||
| 4b4aa165ab | |||
| 619da14708 | |||
| 5db50c4471 | |||
| 38796fd160 | |||
| 5f376927e9 | |||
| e8be1b5329 |
+1
-1
@@ -1,6 +1,6 @@
|
||||
NEXTAUTH_URL=https://linkwarden.sectorq.eu/api/v1/auth
|
||||
NEXTAUTH_SECRET=l4c1j4yd33Du5lo
|
||||
|
||||
DOCKER_REGISTRY=r.sectorq.eu/library/
|
||||
# Manual installation database settings
|
||||
# Example: DATABASE_URL=postgresql://user:password@localhost:5432/linkwarden
|
||||
DATABASE_URL=
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:16-alpine
|
||||
image: ${DOCKER_REGISTRY:-}postgres:16-alpine
|
||||
env_file: .env
|
||||
|
||||
restart: always
|
||||
@@ -12,7 +12,7 @@ services:
|
||||
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
||||
restart: always
|
||||
# build: . # uncomment to build from source
|
||||
image: ghcr.io/linkwarden/linkwarden:latest # comment to build from source
|
||||
image: ${DOCKER_REGISTRY:-}ghcr.io/linkwarden/linkwarden:latest # comment to build from source
|
||||
ports:
|
||||
- 3011:3000
|
||||
volumes:
|
||||
@@ -36,7 +36,7 @@ services:
|
||||
wud.watch: true
|
||||
wud.watch.digest: true
|
||||
meilisearch:
|
||||
image: getmeili/meilisearch:v1.12.8
|
||||
image: ${DOCKER_REGISTRY:-}getmeili/meilisearch:v1.12.8
|
||||
restart: always
|
||||
env_file:
|
||||
- .env
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
puppetserver:
|
||||
image: puppet/puppetserver:latest
|
||||
container_name: puppetserver
|
||||
hostname: active.home.lan
|
||||
ports:
|
||||
- "8140:8140"
|
||||
environment:
|
||||
- PUPPETSERVER_HOSTNAME=active.home.lan
|
||||
volumes:
|
||||
# Main Puppet config
|
||||
- puppet-puppet:/etc/puppetlabs/puppet
|
||||
- puppet-server:/etc/puppetlabs/puppetserver
|
||||
# Puppet code (manifests, modules)
|
||||
- puppet-code:/etc/puppetlabs/code
|
||||
|
||||
networks:
|
||||
puppetnet:
|
||||
aliases:
|
||||
- puppet
|
||||
- puppetserver
|
||||
- active.home.lan
|
||||
|
||||
networks:
|
||||
puppetnet:
|
||||
volumes:
|
||||
puppet-code:
|
||||
puppet-server:
|
||||
puppet-puppet:
|
||||
@@ -0,0 +1,13 @@
|
||||
---
|
||||
services:
|
||||
puppet-agent:
|
||||
image: puppet/puppet-agent:latest
|
||||
container_name: puppet-agent
|
||||
hostname: nas.home.lan
|
||||
environment:
|
||||
- PUPPET_SERVER=active.home.lan
|
||||
volumes:
|
||||
- data:/etc/puppetlabs/puppet
|
||||
command: ["agent", "-t"]
|
||||
volumes:
|
||||
data:
|
||||
Reference in New Issue
Block a user