➜ ~ curl -v ladurbo.tk
* Trying 85.21.240.124:80...
* TCP_NODELAY set
* Connected to ladurbo.tk (85.21.240.124) port 80 (#0)
> GET / HTTP/1.1
> Host: ladurbo.tk
> User-Agent: curl/7.68.0
> Accept: */*
>
* Mark bundle as not supporting multiuse
< HTTP/1.1 301 Moved Permanently
< Date: Sun, 06 Jun 2021 14:20:59 GMT
< Server: Apache/2.4.41 (Ubuntu)
< Location: https://ladurbo.tk/
< Content-Length: 303
< Content-Type: text/html; charset=iso-8859-1
<
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="https://ladurbo.tk/">here</a>.</p>
<hr>
<address>Apache/2.4.41 (Ubuntu) Server at ladurbo.tk Port 80</address>
</body></html>
* Connection #0 to host ladurbo.tk left intact
➜ ~ curl -v https://ladurbo.tk
* Trying 85.21.240.124:443...
* TCP_NODELAY set
---
version: '2.4'
services:
portainer:
image: portainer/portainer
container_name: portainer
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /path/to/data:/data
ports:
- 8000:8000
- 9000:9000
networks:
vlan:
ipv4_address: 192.168.0.60
networks:
dockervlan:
#This interface should be defined as using null driver. Do not remove it.
driver: null
driver_opts:
parent: eth0
ipam:
config:
- subnet: "192.168.0.0/24"
ip_range: "192.168.0.64/26"
gateway: "192.168.0.1"
dockervlan:
#This is the interface which is used for containers networking
driver: macvlan
driver_opts:
parent: eth0
ipam:
config:
- subnet: "192.168.0.0/24"
ip_range: "192.168.0.64/26"
gateway: "192.168.0.1"
influx delete --bucket example-bucket \
--start '1970-01-01T00:00:00Z' \
--stop $(date +"%Y-%m-%dT%H:%M:%SZ") \
--predicate '_measurement="example-measurement" AND exampleTag="exampleTagValue"'