Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BlueSky and BlueBird to docker-compose #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -196,4 +196,7 @@ docs/tools/FSharp.Formatting.svclog
project.lock.json

# Confidential data
nats-sector.json
nats-sector.json

# PyCharm files
.idea/
20 changes: 20 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@

version: '3'

services:
bluesky:
container_name: bluesky
image: turinginst/bluesky:1.1.1
expose:
- 9000
- 9001
bluebird:
container_name: bluebird
depends_on:
- bluesky
image: turinginst/bluebird:1.2.0
ports:
- 5001:5001
environment:
- BS_HOST=bluesky
web:
container_name: twitcher
depends_on:
- bluebird
build: .
image: turinginst/twitcher
command: http-server .
Expand Down