This commit is contained in:
2023-07-24 10:40:10 +00:00
parent 2e70c4a251
commit dd537209df
3 changed files with 38 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM ubuntu
RUN apt-get update \
&& apt-get install -y \
curl \
git \
sudo \
vim \
nano \
wget \
zip \
&& rm -rf /var/lib/apt/lists/*
RUN wget https://github.com/LAX18/PixelPlaceBot/raw/main/custom_release.zip
RUN mkdir /work
WORKDIR /work
RUN unzip ../custom_release.zip
WORKDIR /work/dist/placebot
CMD ["./placebot"]
Binary file not shown.
+20
View File
@@ -0,0 +1,20 @@
services:
afip-last-stand:
image: thelax18/afip_last_stand:v.1.0
container_name: afip-last-stand
network_mode: service:openvpn-client
environment:
AFIP_USER: ${AFIP_USER}
AFIP_PASS: ${AFIP_PASS}
restart: unless-stopped
openvpn-client:
image: ghcr.io/wfg/openvpn-client
container_name: openvpn-client
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun
volumes:
- $PWD/config:/data/vpn
restart: unless-stopped