Skip to content

Instantly share code, notes, and snippets.

View sbOogway's full-sized avatar
💯
swg

Juice Man sbOogway

💯
swg
View GitHub Profile
@sbOogway
sbOogway / one_liner
Last active September 16, 2024 12:02
docker and portainer setup in debian
bash <(curl -s https://gist.githubusercontent.com/sbOogway/e8bc5800bde2245bd3da3641d795b201/raw/6fc300e495fba6b2cb6a739d9b5339d5fe04870d/setup.sh)
@Da9el00
Da9el00 / docker-compose.yml
Created February 7, 2023 09:08
How to create a docker-compose setup with PostgreSQL and pgAdmin4
version: "3.8"
services:
db:
container_name: postgres_container
image: postgres
restart: always
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: root
POSTGRES_DB: test_db