docker-compose/snikket/docker-compose.yml

41 lines
1.0 KiB
YAML
Raw Normal View History

2024-09-28 16:23:32 +02:00
services:
snikket_proxy:
container_name: snikket-proxy
image: snikket/snikket-web-proxy:stable
env_file: snikket.conf
2024-12-26 15:03:19 +01:00
mem_limit: 128m
2024-09-28 16:23:32 +02:00
network_mode: host
volumes:
- snikket_data:/snikket
- acme_challenges:/var/www/html/.well-known/acme-challenge
restart: "unless-stopped"
snikket_certs:
container_name: snikket-certs
image: snikket/snikket-cert-manager:stable
env_file: snikket.conf
2024-12-26 15:03:19 +01:00
mem_limit: 128m
2024-09-28 16:23:32 +02:00
volumes:
- snikket_data:/snikket
- acme_challenges:/var/www/.well-known/acme-challenge
restart: "unless-stopped"
snikket_portal:
container_name: snikket-portal
image: snikket/snikket-web-portal:stable
network_mode: host
env_file: snikket.conf
2024-12-26 15:03:19 +01:00
mem_limit: 128m
2024-09-28 16:23:32 +02:00
restart: "unless-stopped"
snikket_server:
container_name: snikket
image: snikket/snikket-server:stable
network_mode: host
volumes:
- snikket_data:/snikket
env_file: snikket.conf
2024-12-26 15:03:19 +01:00
mem_limit: 512m
2024-09-28 16:23:32 +02:00
restart: "unless-stopped"
volumes:
acme_challenges:
snikket_data: