Bot Updating Documentation

pull/132/head
LinuxServer-CI 2023-07-27 17:15:26 +00:00
rodzic f7838a3600
commit c468b8ee5a
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -59,7 +59,7 @@ All base images are built for x86_64 and aarch64 platforms.
Included in these base images is a simple [Openbox DE](http://openbox.org/) and the accompanying logic needed to launch a single application. Lets look at the bare minimum needed to create an application container starting with a Dockerfile:
```
FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine317
FROM ghcr.io/linuxserver/baseimage-kasmvnc:alpine318
RUN apk add --no-cache firefox
COPY /root /
```
@ -68,7 +68,7 @@ And we can define the application to start using:
```
mkdir -p root/defaults
echo "firefox" > /root/defaults/autostart
echo "firefox" > root/defaults/autostart
```
Resulting in a folder that looks like this: