Skip to content

Instantly share code, notes, and snippets.

View jackbucinskas's full-sized avatar
🤔
thinkin' hard

Jack Bucinskas jackbucinskas

🤔
thinkin' hard
View GitHub Profile
version: '3'
services:
traefik:
container_name: traefik
image: traefik:latest
# Enables the web UI and tells Traefik to listen to docker
command:
- "--api.insecure=true"
- "--providers.docker"
version: "3"
services:
build:
image: klakegg/hugo:latest
container_name: website_build
networks:
- web
volumes:
- "/var/www/html/jack.party:/src"
version: "3"
services:
portainer:
image: portainer/portainer:latest
container_name: portainer
restart: always
command: -H unix:///var/run/docker.sock
ports:
- 9000:9000