Compare commits
12 Commits
4377f2fcbc
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 905c921a67 | |||
| c97706e4f5 | |||
| 14bb8eae7e | |||
| 91558d6b8c | |||
| e8d3b3cb27 | |||
| 0b4817e7fb | |||
| bf00f7077a | |||
| 0c23c61d6c | |||
| f9975b9ccf | |||
| aea19f8e9d | |||
| d9d4d5b9ec | |||
| aa29725406 |
@@ -4,6 +4,10 @@ services:
|
||||
collabora:
|
||||
image: collabora/code:latest
|
||||
container_name: collabora
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.target == here
|
||||
expose:
|
||||
- 9980:9980
|
||||
ports:
|
||||
@@ -17,7 +21,6 @@ services:
|
||||
- TZ=Europe/London
|
||||
- password=Zephie2023
|
||||
- username=admin
|
||||
|
||||
networks:
|
||||
- caddy_net
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ services:
|
||||
- "DIUN_PROVIDERS_SWARM_WATCHBYDEFAULT=true"
|
||||
|
||||
- "DIUN_NOTIF_GOTIFY_ENDPOINT=http://192.168.1.4:8111"
|
||||
- "DIUN_NOTIF_GOTIFY_TOKEN=AOwbQPBcifHa1Kg" # get your token from Gotify UI
|
||||
- "DIUN_NOTIF_GOTIFY_TOKEN=AKEQs.EZ-5r0Vqs" # get your token from Gotify UI
|
||||
- "DIUN_NOTIF_GOTIFY_PRIORITY=5"
|
||||
- "DIUN_NOTIF_GOTIFY_TIMEOUT=10s"
|
||||
deploy:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
duplicati:
|
||||
image: lscr.io/linuxserver/duplicati:2.2.0
|
||||
image: lscr.io/linuxserver/duplicati:latest
|
||||
container_name: duplicati
|
||||
environment:
|
||||
- PUID=0
|
||||
|
||||
@@ -4,7 +4,8 @@ services:
|
||||
container_name: apache2
|
||||
deploy:
|
||||
placement:
|
||||
constraints: [node.role == worker]
|
||||
constraints:
|
||||
- node.labels.target != here
|
||||
replicas: 1
|
||||
restart: on-failure
|
||||
ports:
|
||||
|
||||
@@ -4,7 +4,8 @@ services:
|
||||
container_name: ghost
|
||||
deploy:
|
||||
placement:
|
||||
constraints: [node.role == worker]
|
||||
constraints:
|
||||
- node.labels.target == here
|
||||
replicas: 1
|
||||
restart: always
|
||||
ports:
|
||||
|
||||
7
it-tools/docker-compose.yml
Normal file
7
it-tools/docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
services:
|
||||
it-tools:
|
||||
image: 'corentinth/it-tools:latest'
|
||||
container_name: it-tools
|
||||
ports:
|
||||
- '8090:80'
|
||||
restart: unless-stopped
|
||||
@@ -2,8 +2,9 @@ services:
|
||||
nextfamhistweb:
|
||||
image: httpd:latest
|
||||
deploy:
|
||||
# placement:
|
||||
# constraints: [node.role == worker]
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.target != here
|
||||
replicas: 1
|
||||
restart: on-failure
|
||||
ports:
|
||||
|
||||
@@ -2,6 +2,10 @@ services:
|
||||
owncloud:
|
||||
image: owncloud/server:latest
|
||||
# container_name: owncloud_server
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.target == here
|
||||
restart: always
|
||||
ports:
|
||||
- 8080:8080
|
||||
@@ -59,6 +63,10 @@ services:
|
||||
redis:
|
||||
image: redis:6
|
||||
# container_name: owncloud_redis
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.target == here
|
||||
restart: always
|
||||
command: ["--databases", "1"]
|
||||
healthcheck:
|
||||
|
||||
@@ -7,8 +7,9 @@ services:
|
||||
image: httpd:2.4.65-alpine
|
||||
container_name: testweb
|
||||
deploy:
|
||||
# placement:
|
||||
# constraints: [node.role == worker]
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.target != here
|
||||
replicas: 1
|
||||
restart: on-failure
|
||||
ports:
|
||||
|
||||
@@ -2,9 +2,19 @@ services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma:2
|
||||
container_name: uptime-kuma
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
- node.labels.target != here
|
||||
restart: always
|
||||
ports:
|
||||
- "3010:3001"
|
||||
volumes:
|
||||
- /media/gv0/docker/uptime-kuma/data:/app/data
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
networks:
|
||||
- caddy_net
|
||||
|
||||
networks:
|
||||
caddy_net:
|
||||
external: true
|
||||
|
||||
Reference in New Issue
Block a user