init commit

This commit is contained in:
Richard Toth
2025-12-19 11:24:46 +01:00
commit c8bf011459
5 changed files with 58 additions and 0 deletions

32
docker-compose.yml Normal file
View File

@@ -0,0 +1,32 @@
services:
satis-nginx:
image: nginx:alpine
container_name: satis-nginx
restart: unless-stopped
volumes:
- ./web:/usr/share/nginx/html:ro
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
environment:
VIRTUAL_HOST: satis.trweb.hu
LETSENCRYPT_HOST: satis.trweb.hu
LETSENCRYPT_EMAIL: info@tothbt.com
networks:
- web
satis-build:
image: composer/satis
container_name: satis-build
volumes:
- ./satis.json:/build/satis.json:ro
- ./web:/build/web
- ~/.ssh:/root/.ssh:ro
working_dir: /build
command: ["build", "satis.json", "web"]
networks:
- web
profiles:
- build
networks:
web:
external: true