.git broken, restart
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
FROM alpine:latest
|
||||
|
||||
# Install base packages
|
||||
RUN apk add \
|
||||
librewolf
|
||||
# xorg-xhost \
|
||||
# dbus \
|
||||
# sudo \
|
||||
# mesa \
|
||||
# alsa-utils \
|
||||
# xorg-xprop \
|
||||
# pulseaudio
|
||||
|
||||
RUN useradd -m -G wheel painain \
|
||||
&& echo "%wheel ALL=(ALL) ALL, !/usr/bin/passwd root" >> /etc/sudoers
|
||||
|
||||
USER painpain
|
||||
WORKDIR /home/painpain
|
||||
|
||||
#ENTRYPOINT [""]
|
||||
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
al-pine:
|
||||
build: .
|
||||
container_name: alp
|
||||
environment:
|
||||
- DISPLAY=${DISPLAY} # for GUI
|
||||
volumes:
|
||||
- ./shared-root:/shared-root
|
||||
- ./extra-folder:/extra-folder
|
||||
- /tmp/.X11-unix:/tmp/.X11-unix # X11 socket
|
||||
network_mode: "host" # optional: allows GUI display directly
|
||||
tty: true
|
||||
stdin_open: true
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
FROM archlinux:latest
|
||||
|
||||
# Install base packages
|
||||
RUN pacman -Syu --noconfirm \
|
||||
firefox
|
||||
# xorg-xhost \
|
||||
# dbus \
|
||||
# sudo \
|
||||
# mesa \
|
||||
# alsa-utils \
|
||||
# xorg-xprop \
|
||||
# pulseaudio
|
||||
|
||||
# Optional: create a user to avoid running as root
|
||||
RUN useradd -m -G wheel painoain \
|
||||
&& echo "archuser ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||
|
||||
USER archuser
|
||||
WORKDIR /home/archuser
|
||||
|
||||
# Set Firefox as entrypoint
|
||||
ENTRYPOINT ["firefox"]
|
||||
@@ -0,0 +1,16 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
arch-firefox:
|
||||
build: .
|
||||
container_name: arch_firefox
|
||||
environment:
|
||||
- DISPLAY=${DISPLAY} # for GUI
|
||||
volumes:
|
||||
- ./shared-root:/shared-root
|
||||
- ./extra-folder:/extra-folder
|
||||
- /tmp/.X11-unix:/tmp/.X11-unix # X11 socket
|
||||
network_mode: "host" # optional: allows GUI display directly
|
||||
tty: true
|
||||
stdin_open: true
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
librewolf:
|
||||
image: lscr.io/linuxserver/librewolf:latest
|
||||
container_name: librewolf
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Etc/UTC
|
||||
volumes:
|
||||
- /srv/appdata/librewolf/config:/config
|
||||
ports:
|
||||
- 3001:3001
|
||||
shm_size: "1gb"
|
||||
restart: unless-stopped
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/bash
|
||||
|
||||
# https://belginux.com/installer-librewolf-avec-docker/
|
||||
#
|
||||
docker compose up -d
|
||||
|
||||
# Rendez-vous sur l'ip:# port,
|
||||
# suivant l'IP de votre serveur local et du port choisi,
|
||||
# 3000 par défaut:
|
||||
#
|
||||
# http://ip:3004/
|
||||
#
|
||||
# En HTTPS:
|
||||
#
|
||||
# https://ip:3001/
|
||||
Reference in New Issue
Block a user