Skip to content

Instantly share code, notes, and snippets.

@dbene
dbene / install.md
Created February 10, 2022 15:43
ANNO 1800 - SteamPlay Proton

Get Anno 1800 (Steam Version) running under Linux

Tested on Ubuntu 21.10

Anno 1800

  • Activate Proton in Steam settings
  • Install Anno 1800 within Steam
  • If you run the game now it will show an error message that Ubisoft Connect could not be found

Install Ubisoft Connect

In my case the game was installed on another drive called GamesSSD so paths may vary. Also change the username.

@dbene
dbene / README.md
Last active February 7, 2022 16:14
Traefik with Docker - Compose Example

How to deploy traefik on docker with docker-compose

This guide is about deployment and configuration of traefik with docker and docker-compose. The settings of traefik are saved within the compose file.

If you are looking for more information the following guide is also very good.

Setup

  • Traefik
    • Create a new docker network thats independent from your traefik compose
  • docker network create -d bridge traefik_proxy
@dbene
dbene / docker-compose.yaml
Created April 16, 2020 11:02
portainer compose
version: '2'
services:
portainer:
image: portainer/portainer
restart: unless-stopped
ports:
- "127.0.0.1:9000:9000"
command: -H unix:///var/run/docker.sock
volumes:
@dbene
dbene / Dockerfile
Created May 7, 2018 08:12
pritunl Dockerfile
FROM ubuntu:16.04
RUN echo "deb http://repo.pritunl.com/stable/apt xenial main" >> /etc/apt/sources.list.d/pritunl.list
RUN apt-get update
RUN apt-get install -y dirmngr
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com --recv 7568D9BB55FF9E5287D586017AE645C0CF8E292A
RUN apt-get update
RUN apt-get -y install psmisc iptables pritunl vim nano
EXPOSE 443
@dbene
dbene / docker-compose.yml
Created May 7, 2018 08:11
pritunl docker-compose
version: '2'
services:
app:
build: .
image: pritunl
container_name: pritunl
privileged: true
tty: true
restart: unless-stopped
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\bash]
@="Open Bash"
"Icon"="C:\\Users\\benes\\bash_UX6_icon.ico"
[HKEY_CLASSES_ROOT\Directory\Background\shell\bash\command]
@="C:\\Windows\\System32\\bash.exe"