Selfhosting
Είναι πολύ εύκολο να φιλοξενήσει το δικό σας διακομιστή web πεταλούδα.
Απλός διακομιστής
Section titled “Απλός διακομιστής”Εγκαταστήστε το flutter και δημιουργήστε την εφαρμογή χρησιμοποιώντας:
cd appflutter pub getflutter build web
All the files are in the app/build/web
directory.
Προσάρτηση
Section titled “Προσάρτηση”Dockerhub
Section titled “Dockerhub”You can pull the latest version of the image from Dockerhub using:
docker pull linwooddev/butterfly
The tags are:
:latest
is the current main branch:dev
is the current develop branch:stable
is the latest stable release (like the git tag):nightly
is the latest nightly release (like the git tag)- Tags starting with
:v
are releases
Start the server using: docker run -p 8080:80 -d linwooddev/butterfly
.
Selfbuilding
Section titled “Selfbuilding”Clone the repository and build the Dockerfile
using: docker build -t linwood-butterfly
.
Start the server using: docker run -p 8080:80 -d linwood-butterfly
.