7 lines
186 B
Bash
7 lines
186 B
Bash
#!/bin/bash
|
|
docker network create web
|
|
sed -i "s/email = \"\"/email = \"$EMAIL\"/g" traefik.toml
|
|
mkdir ./htdocs ./htdocs/download
|
|
touch acme.json
|
|
chmod 600 acme.json
|
|
docker-compose up -d |