Skip to content

Instantly share code, notes, and snippets.

View Drillan767's full-sized avatar
๐Ÿ˜Œ
Living my best life tbh.

Joseph Levarato Drillan767

๐Ÿ˜Œ
Living my best life tbh.
View GitHub Profile
---
- hosts: qualif
vars:
ansible_user: osadmin
ansible_password: 'password'
ansible_become_password: 'password2'
tasks:
- name: Copy stuff from here to over there
become: yes
become_user: root
version: '3'
services:
web:
image: jaeger767/geoffreyturpin
command: bundle exec rails s -p 3000 -b '0.0.0.0'
ports:
- "3001:3000"
links:
- db
version: '3.5'
services:
gogs:
image: gogs/gogs
ports:
- "8081:3000"
- "10022:22"
volumes:
- "/var/gogs:/data"
networks:
version: '3.5'
services:
traefik:
image: traefik
command: --api --docker
networks:
- default
ports:
- "80:80"