Skip to content

Instantly share code, notes, and snippets.

@bararchy
Created September 29, 2021 17:28
Show Gist options
  • Save bararchy/495d126c8c1fc7c87f09e62d0432381d to your computer and use it in GitHub Desktop.
Save bararchy/495d126c8c1fc7c87f09e62d0432381d to your computer and use it in GitHub Desktop.
version: '3'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_DB: bc
POSTGRES_USER: bc
POSTGRES_PASSWORD: bc
volumes:
- './pg.sql:/docker-entrypoint-initdb.d/pg.sql'
nodejs:
image: neuralegion/brokencrystals
container_name: nodejs
restart: always
logging:
options:
max-file: '5'
max-size: 10m
depends_on:
- db
brokencrystals.local:
image: neuralegion/brokencrystals-proxy-http
restart: always
ports:
- '8000:80'
depends_on:
- nodejs
@Kif-Fando
Copy link

Will add with next PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment