Created
September 29, 2021 17:28
-
-
Save bararchy/495d126c8c1fc7c87f09e62d0432381d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Will add with next PR