You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
680 B
YAML
26 lines
680 B
YAML
1 month ago
|
variant: flatcar
|
||
|
version: 1.0.0
|
||
|
systemd:
|
||
|
units:
|
||
|
- name: nginx.service
|
||
|
enabled: true
|
||
|
contents: |
|
||
|
[Unit]
|
||
|
Description=NGINX example
|
||
|
After=docker.service
|
||
|
Requires=docker.service
|
||
|
[Service]
|
||
|
TimeoutStartSec=0
|
||
|
ExecStartPre=-/usr/bin/docker rm --force nginx1
|
||
|
ExecStart=/usr/bin/docker run --name nginx1 --pull always --log-driver=journald --net host docker.io/nginx:1
|
||
|
ExecStop=/usr/bin/docker stop nginx1
|
||
|
Restart=always
|
||
|
RestartSec=5s
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|
||
|
storage:
|
||
|
files:
|
||
|
- path: /var/www/index.html
|
||
|
contents:
|
||
|
inline: Hello worldxx
|