mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
22 lines
404 B
YAML
22 lines
404 B
YAML
version: "2"
|
|
|
|
networks:
|
|
# reachable from outside
|
|
default:
|
|
driver: bridge
|
|
# interconnect projects
|
|
kiwi_hub:
|
|
external:
|
|
name: ${KIWI_HUB_NAME}
|
|
|
|
services:
|
|
# an example service
|
|
something:
|
|
# uses an image
|
|
image: maintainer/repo:tag
|
|
# will get restarted
|
|
restart: unless-stopped
|
|
# is also connected to the instance hub
|
|
networks:
|
|
- default
|
|
- kiwi_hub
|