First real file. Docker-compose YML

This commit is contained in:
2023-03-10 11:21:55 +01:00
parent 96a4436185
commit 06645a8d63
4 changed files with 45 additions and 3 deletions

View File

@@ -1,2 +0,0 @@
File1: line 1
File1: line 2

View File

@@ -1 +0,0 @@
File2: line1

26
firefox.yml Normal file
View File

@@ -0,0 +1,26 @@
version: '3'
networks:
vpn_uplink:
external: true
behind_proxy:
external: true
services:
firefox:
image: lscr.io/linuxserver/firefox
container_name: firefox
environment:
- PUID=1002
- PGID=1002
- TZ=Europe/Stockholm
volumes:
- /home/ubuntu/docker_volumes/firefox/config:/config
ports:
- 3000:3000
shm_size: "1gb"
networks:
vpn_uplink:
ipv4_address: 10.23.0.111
behind_proxy:
restart: unless-stopped

19
portainer.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3'
networks:
infra_out:
external: true
services:
portainer:
image: portainer/portainer-ce:alpine
container_name: portainer
volumes:
- ~/docker_volumes/portainer/data:/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "9000:9000"
networks:
infra_out:
ipv4_address: 10.23.0.10
restart: unless-stopped