From fd3c6a2ea02c6dbddd933f074f1a76041ced3603 Mon Sep 17 00:00:00 2001 From: Charles N Wyble Date: Sat, 5 Feb 2022 08:35:31 -0600 Subject: [PATCH] trying out swag from linuxserver --- hello-bunker/docker-compose.yml | 13 ------------- www/docker-compose.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 13 deletions(-) delete mode 100644 hello-bunker/docker-compose.yml create mode 100644 www/docker-compose.yml diff --git a/hello-bunker/docker-compose.yml b/hello-bunker/docker-compose.yml deleted file mode 100644 index 3ca5deb..0000000 --- a/hello-bunker/docker-compose.yml +++ /dev/null @@ -1,13 +0,0 @@ -version: '3' -services: - mybunkerized: - image: bunkerity/bunkerized-nginx - ports: - - 80:8080 - - 443:8443 - volumes: - - /docker/storage/infra/bunkerized/bunkerized-hello/www:/www:ro - - /docker/storage/infra/bunkerized/bunkerized-hello/certs:/etc/letsencrypt - environment: - - SERVER_NAME=hello.knownelement.com - - AUTO_LETS_ENCRYPT=yes \ No newline at end of file diff --git a/www/docker-compose.yml b/www/docker-compose.yml new file mode 100644 index 0000000..bc746c9 --- /dev/null +++ b/www/docker-compose.yml @@ -0,0 +1,29 @@ +--- +version: "2.1" +services: + swag: + image: lscr.io/linuxserver/swag + container_name: swag + cap_add: + - NET_ADMIN + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Chicago + - URL=knownelement.com + - VALIDATION=http + - SUBDOMAINS=archivebox,authportal,bastillion,billing,build-artifacts,butler-hugin,ci-drone,ci-jenkins,inventree,ipam,labnotebook,paperless,photos,review,wboproxy,erp + - CERTPROVIDER= #optional + - DNSPLUGIN=cloudflare #optional + - PROPAGATION= #optional + - DUCKDNSTOKEN= #optional + - EMAIL=prodtechopsalerts@turnsys.com #optional + - ONLY_SUBDOMAINS=false #optional + - EXTRA_DOMAINS= #optional + - STAGING=false #optional + volumes: + - /path/to/appdata/config:/config + ports: + - 443:443 + - 80:80 #optional + restart: unless-stopped \ No newline at end of file