16 lines
558 B
Bash
Executable File
16 lines
558 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run --rm \
|
|
--name nginx \
|
|
--network unitservices \
|
|
--publish 80:80/tcp \
|
|
--publish 443:443/tcp \
|
|
--volume $DATA/common:/etc/nginx/common:ro \
|
|
--volume $DATA/conf.d:/etc/nginx/conf.d:ro \
|
|
--volume $DATA/unit.abbiamoundominio.org:/var/www/unit.abbiamoundominio.org:ro \
|
|
--volume $DATA/wiki.unit.abbiamoundominio.org:/var/www/wiki.unit.abbiamoundominio.org:ro \
|
|
--volume $DATA/oldwiki:/var/www/oldwiki:ro \
|
|
--volume /etc/letsencrypt:/etc/letsencrypt:ro \
|
|
--volume /var/www/letsencrypt:/var/www/letsencrypt:ro \
|
|
nginx
|