mirror of
https://github.com/docker-training/node-bulletin-board.git
synced 2025-12-13 06:16:43 +08:00
29 lines
457 B
YAML
29 lines
457 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
|
|
bb-app:
|
|
image: sixeyed/bulletin-board-app
|
|
build:
|
|
context: ./bulletin-board-app
|
|
networks:
|
|
- bb-net
|
|
|
|
bb-db:
|
|
image: sixeyed/bulletin-board-db
|
|
build:
|
|
context: ./bulletin-board-db
|
|
networks:
|
|
- bb-net
|
|
|
|
bb-proxy:
|
|
image: sixeyed/bulletin-board-proxy
|
|
build:
|
|
context: ./bulletin-board-proxy
|
|
ports:
|
|
- "80:80"
|
|
networks:
|
|
- bb-net
|
|
|
|
networks:
|
|
bb-net: |