init commit
This commit is contained in:
32
docker-compose.yml
Normal file
32
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user